ci: avoid govulncheck-action redundant checkout (conflicts with checkout v6)

This commit is contained in:
Arkadiy Kukarkin
2026-05-26 22:09:50 +02:00
parent 5544bd8f11
commit fe27e70e43

View File

@@ -28,9 +28,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golang/govulncheck-action@v1 - uses: golang/govulncheck-action@v1
with: with:
go-version-file: go.mod go-version-file: go.mod
# reuse the checkout above; the action's own bundled checkout
# conflicts with checkout v6 (duplicate Authorization header)
repo-checkout: false