aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgoogle-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>2026-02-18 03:24:22 +0000
committergoogle-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>2026-02-18 03:24:22 +0000
commit321e5968fdffe894eed1b1dcbd5a45c1d81e5f81 (patch)
tree0dcc766f7bc030a217b683644a5044b6e261b0f4
parenta6974c3af00a66870424aa971ae4dd38c49847bf (diff)
downloadneko-321e5968fdffe894eed1b1dcbd5a45c1d81e5f81.tar.gz
neko-321e5968fdffe894eed1b1dcbd5a45c1d81e5f81.tar.bz2
neko-321e5968fdffe894eed1b1dcbd5a45c1d81e5f81.zip
Fix CI failure: Downgrade golangci-lint to v1.64.6
- Downgraded `golangci-lint-action` from v7 to v6. - Changed `golangci-lint` version from `v2.10.1` to `v1.64.6` to restore compatibility with existing `.golangci.yml`. - `v1.64.6` supports Go 1.24 and avoids breaking configuration changes introduced in v2. Co-authored-by: adammathes <868470+adammathes@users.noreply.github.com>
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ed82c88..e1fab0c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -28,9 +28,9 @@ jobs:
run: go vet ./...
- name: Lint
- uses: golangci/golangci-lint-action@v7
+ uses: golangci/golangci-lint-action@v6
with:
- version: v2.10.1
+ version: v1.64.6
- name: Test
run: go test -v -race ./...