Skip to content

Update Go version to 1.24 in workflows and go.mod #136

Update Go version to 1.24 in workflows and go.mod

Update Go version to 1.24 in workflows and go.mod #136

Workflow file for this run

name: Security Scan
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 0 * * 0"
permissions:
contents: read
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.24"
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: ./...
- name: Run govulncheck
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...