Skip to content

Commit f12fdb0

Browse files
authored
CI: upgrade actions/checkout to v4 and actions/setup-go to v5 (#2584)
* CI: upgrade actions/checkout to v4 * CI: upgrade actions/setup-go to v5
1 parent b835498 commit f12fdb0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout Code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Set up Go ${{ matrix.go }}
27-
uses: actions/setup-go@v4
27+
uses: actions/setup-go@v5
2828
with:
2929
go-version: ${{ env.LATEST_GO_VERSION }}
3030
check-latest: true

.github/workflows/echo.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
runs-on: ${{ matrix.os }}
3131
steps:
3232
- name: Checkout Code
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Set up Go ${{ matrix.go }}
36-
uses: actions/setup-go@v4
36+
uses: actions/setup-go@v5
3737
with:
3838
go-version: ${{ matrix.go }}
3939

@@ -53,18 +53,18 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Checkout Code (Previous)
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
ref: ${{ github.base_ref }}
5959
path: previous
6060

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

6666
- name: Set up Go ${{ matrix.go }}
67-
uses: actions/setup-go@v4
67+
uses: actions/setup-go@v5
6868
with:
6969
go-version: ${{ env.LATEST_GO_VERSION }}
7070

0 commit comments

Comments
 (0)