Skip to content

Commit f4bea0c

Browse files
chore(deps): update actions/checkout action to v6 (#1342)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9bc32d0 commit f4bea0c

9 files changed

Lines changed: 16 additions & 16 deletions

.github/workflows/build-win-infra-agent.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version_changed: ${{ steps.version-check.outputs.version_changed }}
1818
new_agent_version: ${{ steps.version-check.outputs.new_agent_version }}
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 2 # Fetch the latest commit and its parent
2323
- name: Check if latest commit modifies images.windowsAgent.tag (version)
@@ -62,7 +62,7 @@ jobs:
6262
env:
6363
AGENT_VERSION: ${{ needs.check-version-change.outputs.new_agent_version }}
6464
steps:
65-
- uses: actions/checkout@v5
65+
- uses: actions/checkout@v6
6666
- uses: actions/setup-go@v6
6767
with:
6868
go-version-file: 'go.mod'

.github/workflows/build-windows-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
6262
runs-on: ${{ matrix.windows.runner }}
6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v6
6565
- uses: actions/setup-go@v6
6666
with:
6767
go-version-file: 'go.mod'

.github/workflows/e2e-external.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
env:
2424
DOCKER_BUILDKIT: '1' # Setting DOCKER_BUILDKIT=1 ensures TARGETOS and TARGETARCH are populated
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
with:
2828
ref: ${{ github.event.pull_request.head.sha }}
2929
- uses: actions/setup-go@v6

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
DOCKER_BUILDKIT: '1' # Setting DOCKER_BUILDKIT=1 ensures TARGETOS and TARGETARCH are populated
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- uses: actions/setup-go@v6
3333
with:
3434
go-version-file: 'go.mod'

.github/workflows/nightlyAndMainImage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
goos: [ linux ]
2424
goarch: [ amd64, arm64, arm ]
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- uses: actions/setup-go@v6
2828
with:
2929
go-version-file: 'go.mod'
@@ -49,7 +49,7 @@ jobs:
4949
DOCKER_IMAGE_TAG: main
5050
DOCKER_PLATFORMS: "linux/amd64,linux/arm64,linux/arm" # Must be consistent with the matrix from the job above
5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
- name: Setting nightly tag if schedule
5454
if: ${{ github.event.schedule }}
5555
run: echo "DOCKER_IMAGE_TAG=nightly" >> $GITHUB_ENV

.github/workflows/push_pr.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
goos: [ linux ]
2222
goarch: [ amd64, arm64, arm ]
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- uses: actions/setup-go@v6
2626
with:
2727
go-version-file: 'go.mod'
@@ -40,7 +40,7 @@ jobs:
4040
matrix:
4141
kubernetes-version: ["v1.34.0","v1.33.0", "v1.32.0", "v1.31.0", "v1.30.0"]
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
with:
4545
fetch-depth: 0
4646
- uses: helm/chart-testing-action@v2.8.0
@@ -100,7 +100,7 @@ jobs:
100100
needs: [ build ]
101101
runs-on: ubuntu-latest
102102
steps:
103-
- uses: actions/checkout@v5
103+
- uses: actions/checkout@v6
104104
- uses: actions/setup-go@v6
105105
with:
106106
go-version-file: 'go.mod'
@@ -117,7 +117,7 @@ jobs:
117117
name: Static analysis and linting
118118
runs-on: ubuntu-latest
119119
steps:
120-
- uses: actions/checkout@v5
120+
- uses: actions/checkout@v6
121121
- uses: actions/setup-go@v6
122122
with:
123123
go-version-file: 'go.mod'
@@ -139,7 +139,7 @@ jobs:
139139
runs-on: ubuntu-latest
140140
timeout-minutes: 5
141141
steps:
142-
- uses: actions/checkout@v5
142+
- uses: actions/checkout@v6
143143
- name: Codespell test
144144
uses: codespell-project/actions-codespell@master
145145
with:

.github/workflows/release-e2e-resources.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
25+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2626
with:
2727
ref: gh-pages
2828

@@ -41,7 +41,7 @@ jobs:
4141
contents: write
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
44+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4545
# chart-releaser need all the history of the repo to see what changed in the file tree and evaluate which charts need to be released
4646
with:
4747
fetch-depth: 0

.github/workflows/repolinter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
return data.data && data.data.default_branch === context.ref.split('/').slice(-1)[0]
2525
- name: Checkout Self
2626
if: ${{ steps.default-branch.outputs.result == 'true' }}
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
- name: Run Repolinter
2929
if: ${{ steps.default-branch.outputs.result == 'true' }}
3030
uses: newrelic/repolinter-action@v1

.github/workflows/test-windows-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
name: E2E Test on EKS
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
- uses: actions/setup-go@v6
6161
with:
6262
go-version-file: 'go.mod'

0 commit comments

Comments
 (0)