Skip to content

Commit b7f1c58

Browse files
committed
Use Go 1.25 in CI
1 parent 8493c61 commit b7f1c58

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ permissions:
1414

1515
env:
1616
# run static analysis only with the latest Go version
17-
LATEST_GO_VERSION: "1.24"
17+
LATEST_GO_VERSION: "1.25"
1818

1919
jobs:
2020
check:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout Code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Set up Go ${{ matrix.go }}
2727
uses: actions/setup-go@v5

.github/workflows/echo.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
env:
1616
# run coverage and benchmarks only with the latest Go version
17-
LATEST_GO_VERSION: "1.24"
17+
LATEST_GO_VERSION: "1.25"
1818

1919
jobs:
2020
test:
@@ -25,12 +25,12 @@ jobs:
2525
# Echo tests with last four major releases (unless there are pressing vulnerabilities)
2626
# As we depend on `golang.org/x/` libraries which only support last 2 Go releases we could have situations when
2727
# we derive from last four major releases promise.
28-
go: ["1.21", "1.22", "1.23", "1.24"]
28+
go: ["1.22", "1.23", "1.24", "1.25"]
2929
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
3030
runs-on: ${{ matrix.os }}
3131
steps:
3232
- name: Checkout Code
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
- name: Set up Go ${{ matrix.go }}
3636
uses: actions/setup-go@v5
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Upload coverage to Codecov
4444
if: success() && matrix.go == env.LATEST_GO_VERSION && matrix.os == 'ubuntu-latest'
45-
uses: codecov/codecov-action@v3
45+
uses: codecov/codecov-action@v5
4646
with:
4747
token:
4848
fail_ci_if_error: false
@@ -53,13 +53,13 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Checkout Code (Previous)
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757
with:
5858
ref: ${{ github.base_ref }}
5959
path: previous
6060

6161
- name: Checkout Code (New)
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363
with:
6464
path: new
6565

0 commit comments

Comments
 (0)