Skip to content

Commit db7f20c

Browse files
chore: bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [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] <[email protected]>
1 parent 59944d4 commit db7f20c

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fleet_networking_version: ${{ steps.vars.outputs.fleet_networking_version }}
2929
arc_helmchart_version: ${{ steps.vars.outputs.arc_helmchart_version }}
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434
- name: 'Set output variables'
@@ -61,7 +61,7 @@ jobs:
6161
labels: [self-hosted, "1ES.Pool=1es-aks-fleet-pool-ubuntu"]
6262
needs: prepare-variables
6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v6
6565
with:
6666
ref: ${{ needs.prepare-variables.outputs.release_tag }}
6767
- name: 'Login the ACR'
@@ -114,7 +114,7 @@ jobs:
114114
labels: [self-hosted, "1ES.Pool=1es-aks-fleet-pool-ubuntu-arm64"]
115115
needs: prepare-variables
116116
steps:
117-
- uses: actions/checkout@v5
117+
- uses: actions/checkout@v6
118118
with:
119119
ref: ${{ needs.prepare-variables.outputs.release_tag }}
120120
- name: 'Install the Azure CLI'

.github/workflows/chart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
deploy:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
submodules: true
2424
fetch-depth: 0

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
go-version: ${{ env.GO_VERSION }}
4141

4242
- name: Check out code into the Go module directory
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444

4545
- name: Set up Ginkgo CLI
4646
run: |
@@ -90,7 +90,7 @@ jobs:
9090
go-version: ${{ env.GO_VERSION }}
9191

9292
- name: Check out code into the Go module directory
93-
uses: actions/checkout@v5
93+
uses: actions/checkout@v6
9494

9595
- name: Move Docker data directory to /mnt
9696
# The default storage device on GitHub-hosted runners is running low during e2e tests.

.github/workflows/code-lint.yml

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

4545
- name: Checkout
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
with:
4848
submodules: true
4949

@@ -64,7 +64,7 @@ jobs:
6464
go-version: ${{ env.GO_VERSION }}
6565

6666
- name: Check out code into the Go module directory
67-
uses: actions/checkout@v5
67+
uses: actions/checkout@v6
6868

6969
- name: golangci-lint
7070
run: make lint

.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/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
egress-policy: audit
1818

19-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.1.7
19+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4.1.7
2020
- uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 # master
2121
with:
2222
check_filenames: true

.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: tcort/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
@@ -37,7 +37,7 @@ jobs:
3737
REGISTRY: ${{ needs.export-registry.outputs.registry }}
3838
runs-on: ubuntu-20.04
3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
with:
4242
submodules: true
4343
fetch-depth: 0

.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/upgrade.yml

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

4646
- name: Check out code into the Go module directory
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
# Fetch the history of all branches and tags.
5050
# This is needed for the test suite to switch between releases.
@@ -146,7 +146,7 @@ jobs:
146146
go-version: ${{ env.GO_VERSION }}
147147

148148
- name: Check out code into the Go module directory
149-
uses: actions/checkout@v5
149+
uses: actions/checkout@v6
150150
with:
151151
# Fetch the history of all branches and tags.
152152
# This is needed for the test suite to switch between releases.
@@ -248,7 +248,7 @@ jobs:
248248
go-version: ${{ env.GO_VERSION }}
249249

250250
- name: Check out code into the Go module directory
251-
uses: actions/checkout@v5
251+
uses: actions/checkout@v6
252252
with:
253253
# Fetch the history of all branches and tags.
254254
# This is needed for the test suite to switch between releases.

0 commit comments

Comments
 (0)