mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Bump CodeQL upload action to V3 due to deprecation
The following warning was showing up in our conversion logs [1]: | Warning: CodeQL Action v2 will be deprecated on December 5th, 2024. | Please update all occurrences of the CodeQL Action in your workflow | files to v3. For more information, see https://github.blog/changelog/2024-01-12-code-scanning-deprecation-of-codeql-action-v2/ [1]: https://github.com/freedomofpress/dangerzone/actions/runs/7916735564/job/21611227503?pr=718
This commit is contained in:
parent
f569695bb0
commit
22ab6f65bf
2 changed files with 4 additions and 4 deletions
4
.github/workflows/scan.yml
vendored
4
.github/workflows/scan.yml
vendored
|
@ -27,7 +27,7 @@ jobs:
|
||||||
only-fixed: false
|
only-fixed: false
|
||||||
severity-cutoff: critical
|
severity-cutoff: critical
|
||||||
- name: Upload container scan report
|
- name: Upload container scan report
|
||||||
uses: github/codeql-action/upload-sarif@v2
|
uses: github/codeql-action/upload-sarif@v3
|
||||||
with:
|
with:
|
||||||
sarif_file: ${{ steps.scan_container.outputs.sarif }}
|
sarif_file: ${{ steps.scan_container.outputs.sarif }}
|
||||||
category: container
|
category: container
|
||||||
|
@ -57,7 +57,7 @@ jobs:
|
||||||
only-fixed: false
|
only-fixed: false
|
||||||
severity-cutoff: critical
|
severity-cutoff: critical
|
||||||
- name: Upload application scan report
|
- name: Upload application scan report
|
||||||
uses: github/codeql-action/upload-sarif@v2
|
uses: github/codeql-action/upload-sarif@v3
|
||||||
with:
|
with:
|
||||||
sarif_file: ${{ steps.scan_app.outputs.sarif }}
|
sarif_file: ${{ steps.scan_app.outputs.sarif }}
|
||||||
category: app
|
category: app
|
||||||
|
|
4
.github/workflows/scan_released.yml
vendored
4
.github/workflows/scan_released.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
||||||
only-fixed: false
|
only-fixed: false
|
||||||
severity-cutoff: critical
|
severity-cutoff: critical
|
||||||
- name: Upload container scan report
|
- name: Upload container scan report
|
||||||
uses: github/codeql-action/upload-sarif@v2
|
uses: github/codeql-action/upload-sarif@v3
|
||||||
with:
|
with:
|
||||||
sarif_file: ${{ steps.scan_container.outputs.sarif }}
|
sarif_file: ${{ steps.scan_container.outputs.sarif }}
|
||||||
category: container
|
category: container
|
||||||
|
@ -62,7 +62,7 @@ jobs:
|
||||||
only-fixed: false
|
only-fixed: false
|
||||||
severity-cutoff: critical
|
severity-cutoff: critical
|
||||||
- name: Upload application scan report
|
- name: Upload application scan report
|
||||||
uses: github/codeql-action/upload-sarif@v2
|
uses: github/codeql-action/upload-sarif@v3
|
||||||
with:
|
with:
|
||||||
sarif_file: ${{ steps.scan_app.outputs.sarif }}
|
sarif_file: ${{ steps.scan_app.outputs.sarif }}
|
||||||
category: app
|
category: app
|
||||||
|
|
Loading…
Reference in a new issue