Skip to content

Commit bd31262

Browse files
dependabot[bot]rollandf
authored andcommitted
chore: 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] <[email protected]>
1 parent 6b77a4f commit bd31262

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build-test-lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
go-version: ${{ matrix.go-version }}
1616
- name: Check out code into the Go module directory
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Build
1919
env:
2020
GOARCH: ${{ matrix.goarch }}
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
go-version: 1.24.x
3131
- name: Check out code into the Go module directory
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
- name: Lint
3434
run: make lint
3535
test:
@@ -41,14 +41,14 @@ jobs:
4141
with:
4242
go-version: 1.24.x
4343
- name: Check out code into the Go module directory
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
- name: Run tests
4646
run: make unit-test
4747
build-image:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- name: Check out code into the Go module directory
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
with:
5353
fetch-depth: 0
5454
- name: Build image
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
needs: build
5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v5
6161
- name: Set up Go
6262
uses: actions/setup-go@v5
6363
with:
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
needs: build
7474
steps:
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
7676
- name: Set up Go
7777
uses: actions/setup-go@v5
7878
with:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
language: [go]
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v3
2626
with:

.github/workflows/image-push-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
id: repo_name
1313
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1414
- name: Check out code into the Go module directory
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Set up QEMU

.github/workflows/image-push-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id: repo_owner
1616
run: echo REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
1717
- name: Check out code into the Go module directory
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121
- name: Set up QEMU

0 commit comments

Comments
 (0)