Skip to content

Commit e7aa616

Browse files
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 cf6b965 commit e7aa616

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/deploy-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
concurrency:
2727
group: ${{ github.workflow }}-${{ github.ref }}
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
3232

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
id: go
3434

3535
- name: Check out code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: Build
3939
run: |
@@ -62,7 +62,7 @@ jobs:
6262
IP_FAMILY: ${{ matrix.ipFamily }}
6363
steps:
6464
- name: Check out code
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v5
6666

6767
- name: Enable ipv4 and ipv6 forwarding
6868
run: |

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Check out code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Set up QEMU
2323
uses: docker/setup-qemu-action@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Check out code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Set up QEMU
2626
uses: docker/setup-qemu-action@v3

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/setup-go@v5
1919
with:
2020
go-version: ${{ matrix.go-version }}
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- run: sudo make test
2323
- run: make verify
2424

0 commit comments

Comments
 (0)