Skip to content

chore(deps): update all non-major dependencies #524

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #524

Workflow file for this run

name: Compare CVEs to main
permissions:
contents: read
on:
pull_request:
paths:
- "go.mod"
- "go.sum"
- "cargo.toml"
- "cargo.lock"
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: fetch main
run: git fetch origin main --depth 1
- name: Setup golang
uses: ./.github/actions/golang
- name: Install tools
uses: ./.github/actions/install-tools
- name: Check for CVEs in Dependencies
run: "hack/check-vulnerabilities.sh"