Skip to content

Commit 26bd016

Browse files
committed
Update CI action versions
1 parent aa52f6a commit 26bd016

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout Code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Set up Go ${{ matrix.go }}
29-
uses: actions/setup-go@v5
29+
uses: actions/setup-go@v6
3030
with:
3131
go-version: ${{ env.LATEST_GO_VERSION }}
3232
check-latest: true

.github/workflows/echo.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ jobs:
2525
os: [ubuntu-latest, macos-latest, windows-latest]
2626
# Each major Go release is supported until there are two newer major releases. https://golang.org/doc/devel/release.html#policy
2727
# Echo tests with last four major releases (unless there are pressing vulnerabilities)
28-
# As we depend on `golang.org/x/` libraries which only support last 2 Go releases we could have situations when
29-
# we derive from last four major releases promise.
28+
# As we depend on `golang.org/x/` libraries which only support the last 2 Go releases, we could have situations when
29+
# we derive from the last four major releases promise.
3030
go: ["1.25", "1.26"]
3131
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
3232
runs-on: ${{ matrix.os }}
3333
steps:
3434
- name: Checkout Code
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636

3737
- name: Set up Go ${{ matrix.go }}
38-
uses: actions/setup-go@v5
38+
uses: actions/setup-go@v6
3939
with:
4040
go-version: ${{ matrix.go }}
4141

@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Upload coverage to Codecov
4646
if: success() && matrix.go == env.LATEST_GO_VERSION && matrix.os == 'ubuntu-latest'
47-
uses: codecov/codecov-action@v5
47+
uses: codecov/codecov-action@v6
4848
with:
4949
token:
5050
fail_ci_if_error: false
@@ -55,18 +55,18 @@ jobs:
5555
runs-on: ubuntu-latest
5656
steps:
5757
- name: Checkout Code (Previous)
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959
with:
6060
ref: ${{ github.base_ref }}
6161
path: previous
6262

6363
- name: Checkout Code (New)
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v6
6565
with:
6666
path: new
6767

6868
- name: Set up Go ${{ matrix.go }}
69-
uses: actions/setup-go@v5
69+
uses: actions/setup-go@v6
7070
with:
7171
go-version: ${{ env.LATEST_GO_VERSION }}
7272

0 commit comments

Comments
 (0)