fix codacy sarif incompatibility with github security #3144
This file contains 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: Dependency Check | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 4' | |
permissions: read-all | |
env: | |
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
JAVA_VERSION: 21 | |
jobs: | |
dependency-check: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.adoptium.net:443 | |
api.github.com:443 | |
caffeine.gradle-enterprise.cloud:443 | |
downloads.gradle.org:443 | |
downloads.gradle-dn.com:443 | |
github.com:443 | |
jcenter.bintray.com:443 | |
jeremylong.github.io:443 | |
nvd.nist.gov:443 | |
objects.githubusercontent.com:443 | |
ossindex.sonatype.org:443 | |
plugins.gradle.org:443 | |
plugins-artifacts.gradle.org:443 | |
repo.maven.apache.org:443 | |
repo1.maven.org:443 | |
raw.githubusercontent.com:443 | |
services.gradle.org:443 | |
www.cisa.gov:443 | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Run dependency-check | |
uses: ./.github/actions/run-gradle | |
continue-on-error: true | |
with: | |
java: ${{ env.JAVA_VERSION }} | |
arguments: dependencyCheckAggregate --no-configuration-cache | |
- name: Check file existence | |
id: check_files | |
uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2.0.0 | |
with: | |
files: build/reports/dependency-check-report.sarif | |
- name: Upload result to GitHub Code Scanning | |
uses: github/codeql-action/upload-sarif@cdcdbb579706841c47f7063dda365e292e5cad7a # v2.13.4 | |
if: steps.check_files.outputs.files_exists == 'true' | |
with: | |
sarif_file: build/reports/dependency-check-report.sarif |