Update fast-uri and brace-expansion to fix CVEs CVE-2026-6322,CVE-202… #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Copyright OpenSearch Contributors | |
| # SPDX-License-Identifier: Apache-2.0 | |
| # | |
| # The OpenSearch Contributors require contributions made to | |
| # this file be licensed under the Apache-2.0 license or a | |
| # compatible open source license. | |
| # | |
| name: Verify data-prepper-api compatibility | |
| on: | |
| push: | |
| paths: | |
| - 'data-prepper-api/**' | |
| - '*gradle*' | |
| pull_request: | |
| paths: | |
| - 'data-prepper-api/**' | |
| - '*gradle*' | |
| workflow_dispatch: | |
| jobs: | |
| verify-api-compatibility: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up JDK | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| java-version: 11 | |
| distribution: temurin | |
| - name: Checkout Data Prepper | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 | |
| with: | |
| add-job-summary: on-failure | |
| - name: Validate API compatibility | |
| run: ./gradlew -p data-prepper-api validateCompatibility | |
| - name: Output compatibility report | |
| if: failure() | |
| run: cat data-prepper-api/build/reports/library-compatibility/report.txt | |
| - name: Upload Compatibility Report | |
| if: failure() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 | |
| with: | |
| name: library-compatibility-report | |
| path: ${{ github.workspace }}/data-prepper-api/build/reports/library-compatibility/report.html |