mirror of
https://blitiri.com.ar/repos/chasquid
synced 2026-09-13 08:58:50 +00:00
33049893f0
This patch updates the version of the github actions we use in our CI workflows. While they still run correctly, they're showing some warnings about being too out of date in the UI.
26 lines
604 B
YAML
26 lines
604 B
YAML
name: "govulncheck"
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main", "next" ]
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [ "main", "next" ]
|
|
schedule:
|
|
- cron: '29 21 * * 6'
|
|
|
|
jobs:
|
|
govulncheck:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- uses: actions/setup-go@v7
|
|
with:
|
|
go-version: ">=1.19.2"
|
|
check-latest: true
|
|
- name: install govulncheck
|
|
run: go install golang.org/x/vuln/cmd/govulncheck@latest
|
|
- name: run govulncheck
|
|
run: govulncheck ./...
|