Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
cache: 'maven'
- name: Initialize CodeQL
if: ${{ !inputs.skip_code_scans }}
uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e
uses: github/codeql-action/init@9e0d7b8d25671d64c341c19c0152d693099fb5ba
with:
languages: java
config-file: .github/codeql-config.yml
Expand All @@ -147,7 +147,7 @@ jobs:
git push --force-with-lease
- name: Perform CodeQL Analysis
if: ${{ !inputs.skip_code_scans }}
uses: github/codeql-action/analyze@68bde559dea0fdcac2102bfdf6230c5f70eb485e
uses: github/codeql-action/analyze@9e0d7b8d25671d64c341c19c0152d693099fb5ba
with:
upload: 'never'
output: codeql-results
Expand Down Expand Up @@ -257,13 +257,13 @@ jobs:
fi
- name: Upload CodeQL scan results to GitHub Security tab
if: ${{ !inputs.skip_code_scans && env.UPLOAD_SCAN_SARIF == 'true' }}
uses: github/codeql-action/upload-sarif@68bde559dea0fdcac2102bfdf6230c5f70eb485e
uses: github/codeql-action/upload-sarif@9e0d7b8d25671d64c341c19c0152d693099fb5ba
with:
sarif_file: codeql-results
category: 'codeql'
- name: Upload Trivy scan results to GitHub Security tab
if: ${{ !inputs.skip_code_scans && env.UPLOAD_SCAN_SARIF == 'true' }}
uses: github/codeql-action/upload-sarif@68bde559dea0fdcac2102bfdf6230c5f70eb485e
uses: github/codeql-action/upload-sarif@9e0d7b8d25671d64c341c19c0152d693099fb5ba
with:
sarif_file: 'trivy-results.sarif'
category: 'trivy'
Expand Down
Loading