upgrade CI go version to 1.25.x

This commit is contained in:
booleanmaybe 2026-04-08 14:30:55 -04:00
parent 7eb68505de
commit aa37ef1722

View file

@ -13,7 +13,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
go-version: ['1.24.x'] go-version: ['1.25.x']
steps: steps:
- name: Checkout code - name: Checkout code
@ -43,7 +43,7 @@ jobs:
go test -coverprofile=coverage.out -covermode=atomic $pkgs go test -coverprofile=coverage.out -covermode=atomic $pkgs
- name: Upload coverage to Codecov - name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x' if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.25.x'
uses: codecov/codecov-action@v5 uses: codecov/codecov-action@v5
with: with:
token: ${{ secrets.CODECOV_TOKEN }} token: ${{ secrets.CODECOV_TOKEN }}
@ -62,7 +62,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '1.24.x' go-version: '1.25.x'
cache: true cache: true
- name: Run golangci-lint - name: Run golangci-lint
@ -82,7 +82,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '1.24.x' go-version: '1.25.x'
cache: true cache: true
- name: Build - name: Build