Skip to content

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

chore(deps): update all non-major dependencies

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

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"
merge_group:
paths:
- "go.mod"
- "go.sum"
- "cargo.toml"
- "cargo.lock"
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
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"