Skip to content

Commit 2777fea

Browse files
author
Gonzalo Diaz
committed
[Github Actions]: go version upgrade. 1.22.x out -> 1.25.x in.
1 parent 51c0b76 commit 2777fea

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

.github/workflows/go-coverage.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,7 @@ jobs:
1717

1818
build-and-test:
1919
name: "Go CI Tests Coverage"
20-
strategy:
21-
fail-fast: false
22-
matrix:
23-
os: ["ubuntu-24.04"]
24-
go: ["1.23.x"]
25-
runs-on: ${{ matrix.os }}
20+
runs-on: "ubuntu-24.04"
2621
steps:
2722
- uses: actions/checkout@v5
2823
with:
@@ -32,7 +27,7 @@ jobs:
3227
- name: Set up Go
3328
uses: actions/setup-go@v5
3429
with:
35-
go-version: ${{ matrix.go }}
30+
go-version: "1.25.x"
3631

3732
- name: Build
3833
run: go build -v ./...

.github/workflows/go-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
22-
go: ["1.22.x", "1.23.x", "1.24.x"]
22+
go: ["1.23.x", "1.24.x", "1.25.x"]
2323
runs-on: ${{ matrix.os }}
2424
steps:
2525
- uses: actions/checkout@v5

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
22-
go: ["1.22.x", "1.23.x", "1.24.x"]
22+
go: ["1.23.x", "1.24.x", "1.25.x"]
2323
runs-on: ${{ matrix.os }}
2424
steps:
2525
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)