Skip to content

fix(CLR-42): expose only filterable relationships #314

fix(CLR-42): expose only filterable relationships

fix(CLR-42): expose only filterable relationships #314

Workflow file for this run

name: Security
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
govulncheck:
name: Govulncheck
permissions:
contents: read
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.26.5' ]
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: go.sum
- name: Download dependencies
run: go mod download
- name: Run govulncheck
run: |
go install golang.org/x/vuln/cmd/govulncheck@v1.1.4
govulncheck ./...
gitleaks:
name: Gitleaks
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install gitleaks
run: |
curl -sSfL https://github.com/gitleaks/gitleaks/releases/download/v8.30.1/gitleaks_8.30.1_linux_x64.tar.gz \
| sudo tar -xz -C /usr/local/bin gitleaks
- name: Run gitleaks
run: gitleaks git --redact --verbose