Skip to content

Commit fe3bf3f

Browse files
chore: bump actions/checkout from 5 to 6 (#349)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b57c8c3 commit fe3bf3f

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/build-publish-mcr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
outputs:
2626
release_tag: ${{ steps.vars.outputs.release_tag }}
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0
3131
- name: 'Set output variables'
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/setup-go@v6
5252
with:
5353
go-version: ${{ env.GO_VERSION }}
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555
with:
5656
ref: ${{ needs.prepare-variables.outputs.release_tag }}
5757
- name: 'Login the ACR'
@@ -80,7 +80,7 @@ jobs:
8080
uses: actions/setup-go@v6
8181
with:
8282
go-version: ${{ env.GO_VERSION }}
83-
- uses: actions/checkout@v5
83+
- uses: actions/checkout@v6
8484
with:
8585
ref: ${{ needs.prepare-variables.outputs.release_tag }}
8686
- name: 'Install the Azure CLI'

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
go-version: ${{ env.GO_VERSION }}
5858

5959
- name: Check out code into the Go module directory
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161

6262
- name: Prepare e2e variables
6363
run: |

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
go-version: ${{ env.GO_VERSION }}
4646

4747
- name: Check out code into the Go module directory
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949

5050
- name: golangci-lint
5151
run: make lint

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
markdown-link-check:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1515
with:
1616
# this will only show errors in the output

.github/workflows/publish-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/setup-go@v6
4242
with:
4343
go-version: ${{ env.GO_VERSION }}
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
- name: Set image version for a new release
4646
if: startsWith(github.ref, 'refs/tags/')
4747
run: |

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
go-version: ${{ env.GO_VERSION }}
4545

4646
- name: Checkout code
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848

4949
- name: Login to ${{ env.REGISTRY }}
5050
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef

.github/workflows/unit-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
go-version: ${{ env.GO_VERSION }}
4444

4545
- name: Check out code into the Go module directory
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747

4848
- name: Set up Ginkgo CLI
4949
run: |

0 commit comments

Comments
 (0)