Skip to content

chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 #104

chore(deps): bump actions/checkout from 6.0.2 to 7.0.0

chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 #104

Workflow file for this run

name: Snyk Security Scan

Check failure on line 1 in .github/workflows/snyk.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/snyk.yml

Invalid workflow file

(Line: 13, Col: 9): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.SNYK_TOKEN != ''
on:
push:
branches: [main]
permissions:
contents: read
security-events: write
jobs:
snyk:
if: secrets.SNYK_TOKEN != ''
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
- name: Run Snyk vulnerability scan
uses: snyk/actions/node@9adf32b1121593767fc3c057af55b55db032dc04
with:
args: --severity-threshold=high --all-projects --sarif-file-output=snyk.sarif
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
- name: Upload Snyk results to GitHub Security
uses: github/codeql-action/upload-sarif@3ab4101902695724f1a74a5fcce0f4a565409b4d
if: always() && hashFiles('snyk.sarif') != ''
with:
sarif_file: snyk.sarif
wait-for-processing: true