Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disables Snyk checks #1766

Merged
merged 1 commit into from
Feb 26, 2024
Merged
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
45 changes: 0 additions & 45 deletions .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,48 +59,3 @@ jobs:
run: 'echo "IMAGE_VERSION=$(jq .version dist/linux_amd64/metadata.json --raw-output)" >> $GITHUB_ENV'
- name: "run trivy on release image"
run: "docker run -v /var/run/docker.sock:/var/run/docker.sock aquasec/trivy image --format table --exit-code 1 --ignore-unfixed --vuln-type os,library --no-progress --severity CRITICAL,HIGH,MEDIUM authzed/spicedb:v${{ env.IMAGE_VERSION }}-amd64"

snyk-code:
name: "Analyze Go code with Snyk"
permissions:
contents: "read" # for actions/checkout to fetch code
security-events: "write" # for github/codeql-action/upload-sarif to upload SARIF results
actions: "read" # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
runs-on: "buildjet-2vcpu-ubuntu-2204"
steps:
- uses: "actions/checkout@master"
- 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"
- name: "Upload result to GitHub Code Scanning"
uses: "github/codeql-action/upload-sarif@v3"
with:
sarif_file: "snyk.sarif"

snyk-docker:
name: "Analyze Docker with Snyk"
permissions:
contents: "read" # for actions/checkout to fetch code
security-events: "write" # for github/codeql-action/upload-sarif to upload SARIF results
actions: "read" # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
runs-on: "buildjet-2vcpu-ubuntu-2204"
steps:
- uses: "actions/checkout@master"
- name: "Build a Docker image"
run: "DOCKER_BUILDKIT=1 docker build -t authzed/spicedb ."
- name: "Run Snyk to check Docker image for vulnerabilities"
continue-on-error: true
uses: "snyk/actions/docker@master"
env:
SNYK_TOKEN: "${{ secrets.SNYK_TOKEN }}"
with:
image: "authzed/spicedb"
args: "--file=Dockerfile"
- name: "Upload result to GitHub Code Scanning"
uses: "github/codeql-action/upload-sarif@v3"
with:
sarif_file: "snyk.sarif"
Loading