Skip to content

Commit 9ebb97f

Browse files
Bump the actions group with 3 updates (#4328)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 75c401f commit 9ebb97f

13 files changed

+43
-43
lines changed

.github/workflows/arc-publish-chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
publish-chart: ${{ steps.publish-chart-step.outputs.publish }}
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
fetch-depth: 0
4646

@@ -134,7 +134,7 @@ jobs:
134134

135135
steps:
136136
- name: Checkout
137-
uses: actions/checkout@v5
137+
uses: actions/checkout@v6
138138
with:
139139
fetch-depth: 0
140140

@@ -184,7 +184,7 @@ jobs:
184184
# this workaround is intended to move the index.yaml to the target repo
185185
# where the github pages are hosted
186186
- name: Checkout target repository
187-
uses: actions/checkout@v5
187+
uses: actions/checkout@v6
188188
with:
189189
repository: ${{ env.CHART_TARGET_ORG }}/${{ env.CHART_TARGET_REPO }}
190190
path: ${{ env.CHART_TARGET_REPO }}

.github/workflows/arc-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: ${{ !startsWith(github.event.inputs.release_tag_name, 'gha-runner-scale-set-') }}
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- uses: actions/setup-go@v6
4545
with:

.github/workflows/arc-release-runners.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: Trigger Build and Push of Runner Images
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- name: Get runner version
3535
id: versions
3636
run: |

.github/workflows/arc-update-runners-scheduled.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
container_hooks_current_version: ${{ steps.container_hooks_versions.outputs.container_hooks_current_version }}
2525
container_hooks_latest_version: ${{ steps.container_hooks_versions.outputs.container_hooks_latest_version }}
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828

2929
- name: Get runner current and latest versions
3030
id: runner_versions
@@ -69,7 +69,7 @@ jobs:
6969
echo "CONTAINER_HOOKS_CURRENT_VERSION=${{ needs.check_versions.outputs.container_hooks_current_version }}"
7070
echo "CONTAINER_HOOKS_LATEST_VERSION=${{ needs.check_versions.outputs.container_hooks_latest_version }}"
7171

72-
- uses: actions/checkout@v5
72+
- uses: actions/checkout@v6
7373

7474
- name: PR Name
7575
id: pr_name
@@ -124,7 +124,7 @@ jobs:
124124
PR_NAME: ${{ needs.check_pr.outputs.pr_name }}
125125

126126
steps:
127-
- uses: actions/checkout@v5
127+
- uses: actions/checkout@v6
128128

129129
- name: New branch
130130
run: git checkout -b update-runner-"$(date +%Y-%m-%d)"

.github/workflows/arc-validate-chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
fetch-depth: 0
4646

.github/workflows/arc-validate-runners.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: runner / shellcheck
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- name: "Run shellcheck"
2929
run: make shellcheck
3030

@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
- name: Run tests
3939
run: |

.github/workflows/gha-e2e-tests.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
timeout-minutes: 20
3232
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
with:
3636
ref: ${{github.head_ref}}
3737

3838
- name: Get configure token
3939
id: config-token
40-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
40+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
4141
with:
4242
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
4343
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}
@@ -54,13 +54,13 @@ jobs:
5454
timeout-minutes: 20
5555
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
5656
steps:
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858
with:
5959
ref: ${{github.head_ref}}
6060

6161
- name: Get configure token
6262
id: config-token
63-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
63+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
6464
with:
6565
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
6666
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}
@@ -77,13 +77,13 @@ jobs:
7777
timeout-minutes: 20
7878
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
7979
steps:
80-
- uses: actions/checkout@v5
80+
- uses: actions/checkout@v6
8181
with:
8282
ref: ${{github.head_ref}}
8383

8484
- name: Get configure token
8585
id: config-token
86-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
86+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
8787
with:
8888
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
8989
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}
@@ -100,13 +100,13 @@ jobs:
100100
timeout-minutes: 20
101101
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
102102
steps:
103-
- uses: actions/checkout@v5
103+
- uses: actions/checkout@v6
104104
with:
105105
ref: ${{github.head_ref}}
106106

107107
- name: Get configure token
108108
id: config-token
109-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
109+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
110110
with:
111111
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
112112
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}
@@ -123,13 +123,13 @@ jobs:
123123
timeout-minutes: 20
124124
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
125125
steps:
126-
- uses: actions/checkout@v5
126+
- uses: actions/checkout@v6
127127
with:
128128
ref: ${{github.head_ref}}
129129

130130
- name: Get configure token
131131
id: config-token
132-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
132+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
133133
with:
134134
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
135135
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}
@@ -146,13 +146,13 @@ jobs:
146146
timeout-minutes: 20
147147
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
148148
steps:
149-
- uses: actions/checkout@v5
149+
- uses: actions/checkout@v6
150150
with:
151151
ref: ${{github.head_ref}}
152152

153153
- name: Get configure token
154154
id: config-token
155-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
155+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
156156
with:
157157
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
158158
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}
@@ -169,13 +169,13 @@ jobs:
169169
timeout-minutes: 20
170170
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
171171
steps:
172-
- uses: actions/checkout@v5
172+
- uses: actions/checkout@v6
173173
with:
174174
ref: ${{github.head_ref}}
175175

176176
- name: Get configure token
177177
id: config-token
178-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
178+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
179179
with:
180180
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
181181
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}
@@ -192,13 +192,13 @@ jobs:
192192
timeout-minutes: 20
193193
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
194194
steps:
195-
- uses: actions/checkout@v5
195+
- uses: actions/checkout@v6
196196
with:
197197
ref: ${{github.head_ref}}
198198

199199
- name: Get configure token
200200
id: config-token
201-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
201+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
202202
with:
203203
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
204204
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}
@@ -215,13 +215,13 @@ jobs:
215215
timeout-minutes: 20
216216
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.repository_id
217217
steps:
218-
- uses: actions/checkout@v5
218+
- uses: actions/checkout@v6
219219
with:
220220
ref: ${{github.head_ref}}
221221

222222
- name: Get configure token
223223
id: config-token
224-
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
224+
uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343
225225
with:
226226
application_id: ${{ secrets.E2E_TESTS_ACCESS_APP_ID }}
227227
application_private_key: ${{ secrets.E2E_TESTS_ACCESS_PK }}

.github/workflows/gha-publish-chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
with:
5050
# If inputs.ref is empty, it'll resolve to the default branch
5151
ref: ${{ inputs.ref }}
@@ -119,7 +119,7 @@ jobs:
119119
runs-on: ubuntu-latest
120120
steps:
121121
- name: Checkout
122-
uses: actions/checkout@v5
122+
uses: actions/checkout@v6
123123
with:
124124
# If inputs.ref is empty, it'll resolve to the default branch
125125
ref: ${{ inputs.ref }}
@@ -166,7 +166,7 @@ jobs:
166166
runs-on: ubuntu-latest
167167
steps:
168168
- name: Checkout
169-
uses: actions/checkout@v5
169+
uses: actions/checkout@v6
170170
with:
171171
# If inputs.ref is empty, it'll resolve to the default branch
172172
ref: ${{ inputs.ref }}

.github/workflows/gha-validate-chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 0
4242

@@ -111,7 +111,7 @@ jobs:
111111
runs-on: ubuntu-latest
112112
steps:
113113
- name: Checkout
114-
uses: actions/checkout@v5
114+
uses: actions/checkout@v6
115115
- uses: actions/setup-go@v6
116116
with:
117117
go-version-file: "go.mod"

.github/workflows/global-publish-canary.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
TARGET_REPO: actions-runner-controller
5656
steps:
5757
- name: Checkout
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959

6060
- name: Get Token
6161
id: get_workflow_token
@@ -90,7 +90,7 @@ jobs:
9090
runs-on: ubuntu-latest
9191
steps:
9292
- name: Checkout
93-
uses: actions/checkout@v5
93+
uses: actions/checkout@v6
9494

9595
- name: Login to GitHub Container Registry
9696
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef

0 commit comments

Comments
 (0)