Skip to content
Merged
Show file tree
Hide file tree
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
54 changes: 27 additions & 27 deletions .github/workflows/sast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,32 +30,32 @@ jobs:
- '**/package.json'
outputs:
changed: ${{ steps.changes.outputs.packages == 'true' }}
trivy:
name: Trivy
runs-on: ubuntu-latest
needs: paths
if: always() && (github.event_name == 'push' || github.event_name == 'schedule' || needs.paths.outputs.changed == 'true')
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .trivy_cache
key: ${{ runner.os }}-trivy-v0.31.0
- uses: aquasecurity/trivy-action@0.34.0
with:
scan-type: 'fs'
format: 'table'
exit-code: '1'
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
cache-dir: .trivy_cache
env:
TRIVY_DEBUG: true
- name: Upload scan results to GitHub
if: github.event_name != 'pull_request' && failure()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'
# trivy:
# name: Trivy
# runs-on: ubuntu-latest
# needs: paths
# if: always() && (github.event_name == 'push' || github.event_name == 'schedule' || needs.paths.outputs.changed == 'true')
# steps:
# - uses: actions/checkout@v4
# - uses: actions/cache@v4
# with:
# path: .trivy_cache
# key: ${{ runner.os }}-trivy-v0.31.0
# - uses: aquasecurity/trivy-action@0.34.0
# with:
# scan-type: 'fs'
# format: 'table'
# exit-code: '1'
# vuln-type: 'os,library'
# severity: 'CRITICAL,HIGH'
# cache-dir: .trivy_cache
# env:
# TRIVY_DEBUG: true
# - name: Upload scan results to GitHub
# if: github.event_name != 'pull_request' && failure()
# uses: github/codeql-action/upload-sarif@v3
# with:
# sarif_file: 'trivy-results.sarif'
semgrep:
name: Semgrep
runs-on: ubuntu-latest
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
name: SAST Safe
runs-on: ubuntu-latest
needs:
- trivy
# - trivy
- semgrep
- codeql
# This is needed to make sure this job always runs even if others got skipped
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8595,9 +8595,9 @@ yallist@^3.0.2:
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==

yaml@^1.10.0, yaml@^1.7.2:
version "1.10.2"
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
version "1.10.3"
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.3.tgz#76e407ed95c42684fb8e14641e5de62fe65bbcb3"
integrity sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==

yargs-parser@^21.0.1, yargs-parser@^21.1.1:
version "21.1.1"
Expand Down
Loading