From 294097c3b60b43853fe61e4288609b3dce5a06c0 Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Mon, 9 Feb 2026 14:13:46 -0500 Subject: [PATCH] fix: use setup-go@v3 (latest available on gitea.com mirror) The gitea.com/actions/setup-go mirror only has tags up to v3. v3 supports go-version-file which is all we need. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e9494be..49d9b0f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: https://gitea.com/actions/checkout@v4 - - uses: https://gitea.com/actions/setup-go@v5 + - uses: https://gitea.com/actions/setup-go@v3 with: go-version-file: go.mod - run: go build ./... @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: https://gitea.com/actions/checkout@v4 - - uses: https://gitea.com/actions/setup-go@v5 + - uses: https://gitea.com/actions/setup-go@v3 with: go-version-file: go.mod - run: go test ./... @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: https://gitea.com/actions/checkout@v4 - - uses: https://gitea.com/actions/setup-go@v5 + - uses: https://gitea.com/actions/setup-go@v3 with: go-version-file: go.mod - run: go vet ./...