Skip to content

changed deploy-cloudrun.yml back to how it was before #53

changed deploy-cloudrun.yml back to how it was before

changed deploy-cloudrun.yml back to how it was before #53

Workflow file for this run

name: Run Snyk Analysis
on:
push:
branches:
- main
jobs:
security:
runs-on: ubuntu-latest
permissions:
# required for Github Code Scanning
security-events: write
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/python-3.10@master
continue-on-error: true # To make sure that SARIF upload gets called
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
args: --sarif-file-output=snyk.sarif
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: snyk.sarif