Skip to content

Bump github/codeql-action from 4.32.3 to 4.32.4 #1381

Bump github/codeql-action from 4.32.3 to 4.32.4

Bump github/codeql-action from 4.32.3 to 4.32.4 #1381

Workflow file for this run

# GitHub Actions workflow for govulncheck.
# This file is licensed under MIT License.
# https://github.com/fxamacker/cbor
name: govulncheck
# Revoke default permissions and grant what's needed in each job.
permissions: {}
on:
workflow_dispatch:
pull_request:
# Run govulncheck on PR for all branches and paths.
push:
# Run govulncheck on push for all branches and paths.
schedule:
- cron: '45 12 * * *' # Daily at 12:45 UTC / 7:45 AM Central
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
Check:
runs-on: ubuntu-latest
permissions:
# Grant permission to read content.
contents: read
steps:
- name: Checkout source
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Install Go and setup env
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: 1.23
check-latest: true
- name: Install latest govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@d1f380186385b4f64e00313f31743df8e4b89a77 # v1.1.4
- name: Run govulncheck
run: govulncheck -show=traces ./...