Upgrade the Ubuntu-based runner used in CI to 24.04 #375
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Audit | |
on: | |
pull_request: | |
paths: | |
- '**/*.go' | |
- .github/workflows/audit.yml | |
- go.mod | |
- go.sum | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: 0 2 * * * | |
workflow_dispatch: ~ | |
permissions: read-all | |
jobs: | |
vulnerabilities: | |
name: Vulnerabilities | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version-file: go.mod | |
- name: Verify action checksums | |
env: | |
JOB: ${{ github.job }} | |
WORKFLOW: ${{ github.workflow_ref }} | |
run: | | |
WORKFLOW=$(echo "$WORKFLOW" | cut -d '@' -f 1 | cut -d '/' -f 3-5) | |
go run ./cmd/ghasum verify -cache /home/runner/work/_actions -no-evict -offline "$WORKFLOW:$JOB" | |
- name: Audit | |
run: go run tasks.go audit |