mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2025-12-06 19:46:44 +03:00
Dont fail workflow on security issues
This commit is contained in:
3
.claude/commands/new_release.md
Normal file
3
.claude/commands/new_release.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
Evaluate all the updates being made.
|
||||||
|
Make sure the user has clarified if its a major, minor or a patch release.
|
||||||
|
Update the package.json first before you push the tag.
|
||||||
5
.github/workflows/docker-build.yml
vendored
5
.github/workflows/docker-build.yml
vendored
@@ -120,7 +120,7 @@ jobs:
|
|||||||
image: ${{ env.REGISTRY }}/${{ env.IMAGE }}:latest
|
image: ${{ env.REGISTRY }}/${{ env.IMAGE }}:latest
|
||||||
sarif-file: scout-results.sarif
|
sarif-file: scout-results.sarif
|
||||||
summary: true
|
summary: true
|
||||||
exit-code: true
|
exit-code: false
|
||||||
only-severities: critical,high
|
only-severities: critical,high
|
||||||
write-comment: true
|
write-comment: true
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@@ -134,7 +134,7 @@ jobs:
|
|||||||
image: local://gitea-mirror:scan
|
image: local://gitea-mirror:scan
|
||||||
sarif-file: scout-results.sarif
|
sarif-file: scout-results.sarif
|
||||||
summary: true
|
summary: true
|
||||||
exit-code: true
|
exit-code: false
|
||||||
only-severities: critical,high
|
only-severities: critical,high
|
||||||
write-comment: true
|
write-comment: true
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@@ -156,6 +156,7 @@ jobs:
|
|||||||
- name: Upload Docker Scout scan results to GitHub Security tab
|
- name: Upload Docker Scout scan results to GitHub Security tab
|
||||||
uses: github/codeql-action/upload-sarif@v3
|
uses: github/codeql-action/upload-sarif@v3
|
||||||
if: always()
|
if: always()
|
||||||
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
sarif_file: scout-results.sarif
|
sarif_file: scout-results.sarif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user