Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

chore: update readme with end of life note #1

chore: update readme with end of life note

chore: update readme with end of life note #1

name: Snyk for Golang
on:
push:
branches: [ master ]
schedule:
- cron: '37 12 * * 1'
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/golang@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 --org=idealo
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: snyk.sarif