From fe27e70e4317cd1f6c3c7a45a8d563bd52121ca9 Mon Sep 17 00:00:00 2001 From: Arkadiy Kukarkin Date: Tue, 26 May 2026 22:09:50 +0200 Subject: [PATCH] ci: avoid govulncheck-action redundant checkout (conflicts with checkout v6) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 783bb00..1de5c12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,9 +28,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version-file: go.mod - uses: golang/govulncheck-action@v1 with: 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