Extend support for relationship filtering and add relationship filtering to other APIs #128
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Security" | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- "!dependabot/*" | |
- "main" | |
pull_request: | |
branches: ["*"] | |
merge_group: | |
types: | |
- "checks_requested" | |
jobs: | |
codeql: | |
name: "Analyze with CodeQL" | |
runs-on: "buildjet-8vcpu-ubuntu-2204" | |
permissions: | |
actions: "read" | |
contents: "read" | |
security-events: "write" | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ["go"] | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "authzed/actions/setup-go@main" | |
- uses: "authzed/actions/codeql@main" | |
trivy: | |
name: "Analyze Code and Docker Image with Trivvy" | |
runs-on: "buildjet-2vcpu-ubuntu-2204" | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "authzed/actions/setup-go@main" | |
- uses: "aquasecurity/trivy-action@master" | |
with: | |
scan-type: "fs" | |
ignore-unfixed: true | |
format: "table" | |
exit-code: "1" | |
severity: "CRITICAL,HIGH,MEDIUM" | |
# Workaround until goreleaser release supports --single-target | |
# makes the build faster by not building everything | |
- name: "modify goreleaser config to skip building all targets" | |
run: | | |
echo "partial: | |
by: target" >> .goreleaser.yml | |
- uses: "goreleaser/goreleaser-action@v4" | |
id: "goreleaser" | |
with: | |
distribution: "goreleaser-pro" | |
version: "latest" | |
args: "release --clean --split --snapshot" | |
env: | |
GORELEASER_KEY: "${{ secrets.GORELEASER_KEY }}" | |
- name: "Obtain container image to scan" | |
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" |