From 485aa90d139358c6f3f46fde03cef89fc666ae98 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 18 Jul 2024 18:08:12 +0100 Subject: [PATCH] build: use go1.22 for the linter to fix excess memory usage golangci-lint seems to have a bug which uses excess memory under go1.23 See: https://github.com/golangci/golangci-lint/issues/4874 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 27da14d04..5445a809a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -237,7 +237,7 @@ jobs: id: setup-go uses: actions/setup-go@v5 with: - go-version: '>=1.23.0-rc.1' + go-version: '>=1.22.0-rc.1' check-latest: true cache: false