From b5833c98902e459fdc12c88dcdca6a5bc3ee4296 Mon Sep 17 00:00:00 2001 From: Serhii Mudryk Date: Tue, 1 Oct 2024 00:05:07 +0300 Subject: [PATCH] GH Actions: updated to Go 1.23 --- .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 34873a9..c58c728 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.21.x', '1.22.x'] + go: ['1.22.x', '1.23.x'] steps: - uses: actions/checkout@v4 @@ -36,7 +36,7 @@ jobs: run: go test -race -v ./... - name: Coveralls - if: ${{ startsWith(matrix.go, '1.22') && github.event_name == 'push' }} + if: ${{ startsWith(matrix.go, '1.23') && github.event_name == 'push' }} env: COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: |