Skip to content

Commit 07265d5

Browse files
chore(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent badb8b1 commit 07265d5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
go-version: ${{ env.GO_VERSION }}
4141
- name: Checkout code
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
- name: Cached Go dependencies
4444
uses: actions/cache@v4
4545
with:
@@ -67,7 +67,7 @@ jobs:
6767
with:
6868
go-version: ${{ env.GO_VERSION }}
6969
- name: Checkout code
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
- uses: actions/cache@v4
7272
with:
7373
path: ~/go/pkg/mod
@@ -94,7 +94,7 @@ jobs:
9494
- name: Available platforms
9595
run: echo ${{ steps.buildx.outputs.platforms }}
9696
- name: Checkout code
97-
uses: actions/checkout@v4
97+
uses: actions/checkout@v5
9898
- name: Setup Go
9999
uses: actions/setup-go@v5
100100
with:

.github/workflows/release-snapshot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
go-version: ${{ env.GO_VERSION }}
3030
- name: Checkout code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
- uses: actions/cache@v4
3333
with:
3434
path: ~/go/pkg/mod

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
go-version: ${{ env.GO_VERSION }}
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 0
2424
- uses: actions/cache@v4
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
go-version: ${{ env.GO_VERSION }}
5353
- name: Checkout code
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
with:
5656
fetch-depth: 0
5757
- uses: actions/cache@v4

0 commit comments

Comments
 (0)