Skip to content

ci: bump docker/login-action from 4.0.0 to 4.1.0 (#14) #36

ci: bump docker/login-action from 4.0.0 to 4.1.0 (#14)

ci: bump docker/login-action from 4.0.0 to 4.1.0 (#14) #36

Workflow file for this run

name: Security
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 6 * * 1" # weekly Monday 6am UTC
permissions:
contents: read
jobs:
gosec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Run gosec
uses: securego/gosec@223e19b8856e00f02cc67804499a83f77e208f3c # v2.25.0
env:
GOFLAGS: -buildvcs=false
with:
args: -exclude=G104,G301,G304,G306 -exclude-dir=cmd/generated ./...
govulncheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version-file: go.mod
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@v1.1.4
- name: Run govulncheck
run: govulncheck ./...