Skip to content

govulncheck

govulncheck #7

Workflow file for this run

name: govulncheck
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch: {}
permissions: read-all
env:
GO_VERSION: '1.26.5'
jobs:
govulncheck:
name: govulncheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Set up Go
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
with:
go-version: ${{ env.GO_VERSION }}
cache-dependency-path: go.sum
- name: Run govulncheck
run: make vulncheck