Add constraint to Lz4-java version in response to CVE-2025-12183 #938
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
| name: Build and Validate | |
| on: | |
| schedule: | |
| - cron: 16 10 * * * | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Build with Gradle | |
| uses: hypertrace/github-actions/gradle@main | |
| with: | |
| args: build | |
| dependency-check: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Dependency Check | |
| uses: hypertrace/github-actions/dependency-check@main | |
| with: | |
| nvd-api-key: ${{ secrets.NVD_API_KEY }} |