Bump CI to use Go v1.25

This commit is contained in:
Romain Bouyé
2025-09-02 13:22:32 +02:00
parent 97843ac4c9
commit 528e5d5d36
3 changed files with 40 additions and 45 deletions

View File

@@ -14,27 +14,27 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.25'
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-tools-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-tools
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-tools-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-tools
- name: Setup tools
run: make get_tools
- name: Setup tools
run: make get_tools
- name: Run Makefile checks
run: make checks
- name: Run Makefile checks
run: make checks
tests:
name: Run Go ${{ matrix.go }} tests
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.24", "1.23", "1.22"]
go: ["1.25", "1.24", "1.23", "1.22"]
steps:
- uses: actions/checkout@v4