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@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2
uses: github/codeql-action/init@b1bff81932f5cdfc8695c7752dcee935dcd061c8
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@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2
uses: github/codeql-action/analyze@b1bff81932f5cdfc8695c7752dcee935dcd061c8
with:
upload: 'never'
output: codeql-results
Expand Down Expand Up @@ -253,13 +253,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@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2
uses: github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8
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@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2
uses: github/codeql-action/upload-sarif@b1bff81932f5cdfc8695c7752dcee935dcd061c8
with:
sarif_file: 'trivy-results.sarif'
category: 'trivy'
Expand Down
Loading