From 4e1539f413e78e8b64732379194f2fbd16ad86f6 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Wed, 4 Sep 2024 20:23:22 +0800 Subject: [PATCH] chore: upgrade golangci-lint and support Go 1.23 - Update golangci-lint-action from version 5 to version 6 - Add Go version 1.23 to the list of supported versions Signed-off-by: Bo-Yi Wu --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 593f493..c5a7eed 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,14 +23,14 @@ jobs: go-version-file: go.mod check-latest: true - name: Setup golangci-lint - uses: golangci/golangci-lint-action@v5 + uses: golangci/golangci-lint-action@v6 with: args: --verbose test: strategy: matrix: os: [ubuntu-latest] - go: ["1.20", 1.21, 1.22] + go: ["1.20", 1.21, 1.22, 1.23] include: - os: ubuntu-latest go-build: ~/.cache/go-build