From 6364dd770a0ff9d39b33f36ebed3352992cee085 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Sun, 17 Aug 2025 12:31:13 -0400 Subject: [PATCH] build: go 1.24 for build and tests Signed-off-by: Chris Gianelloni --- .github/workflows/go-test.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/publish.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index c895237..2dd9ad7 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -16,7 +16,7 @@ jobs: name: go-test strategy: matrix: - go-version: [1.23.x, 1.24.x] + go-version: [1.24.x, 1.25.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 4fd711a..cf05d8c 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -18,6 +18,6 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 https://github.com/actions/checkout/releases/tag/v5.0.0 - uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 https://github.com/actions/setup-go/releases/tag/v5.5.0 with: - go-version: 1.23.x + go-version: 1.24.x - name: golangci-lint uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0 https://github.com/golangci/golangci-lint-action/releases/tag/v8.0.0 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a01d9c1..e1486dd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -62,7 +62,7 @@ jobs: fetch-depth: '0' - uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 https://github.com/actions/setup-go/releases/tag/v5.5.0 with: - go-version: 1.23.x + go-version: 1.24.x - name: Build binary run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build - name: Upload release asset