Skip to content

Commit 3818926

Browse files
cilium-renovate[bot]aanm
authored andcommitted
chore(deps): update all github action dependencies
Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>
1 parent fd6236c commit 3818926

39 files changed

+175
-175
lines changed

.github/workflows/build-images-base.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
name: Build and Push Images
4747
timeout-minutes: 45
4848
environment: ${{ inputs.environment || 'release-base-images' }}
49-
runs-on: ubuntu-22.04
49+
runs-on: ubuntu-24.04
5050
steps:
5151
- name: Checkout default branch (trusted)
52-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
52+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5353
with:
5454
ref: ${{ github.event.repository.default_branch }}
5555
persist-credentials: false
@@ -80,7 +80,7 @@ jobs:
8080
# Warning: since this is a privileged workflow, subsequent workflow job
8181
# steps must take care not to execute untrusted code.
8282
- name: Checkout pull request branch (NOT TRUSTED)
83-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
83+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
8484
with:
8585
persist-credentials: false
8686
ref: ${{ github.event.pull_request.head.sha }}
@@ -115,7 +115,7 @@ jobs:
115115

116116
- name: Release build cilium-runtime
117117
if: ${{ steps.cilium-runtime-tag-in-repositories.outputs.exists == 'false' }}
118-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
118+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
119119
id: docker_build_release_runtime
120120
with:
121121
provenance: false
@@ -202,7 +202,7 @@ jobs:
202202

203203
- name: Release build cilium-builder
204204
if: ${{ steps.cilium-builder-tag-in-repositories.outputs.exists == 'false' }}
205-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
205+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
206206
id: docker_build_release_builder
207207
with:
208208
provenance: false
@@ -298,7 +298,7 @@ jobs:
298298
299299
image-digests:
300300
name: Display Digests
301-
runs-on: ubuntu-22.04
301+
runs-on: ubuntu-24.04
302302
needs: build-and-push
303303
steps:
304304
- name: Downloading Image Digests

.github/workflows/build-images-beta.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
echo-inputs:
2222
if: ${{ github.event_name == 'workflow_dispatch' }}
2323
name: Echo Workflow Dispatch Inputs
24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-24.04
2525
steps:
2626
- name: Echo Workflow Dispatch Inputs
2727
run: |
@@ -31,7 +31,7 @@ jobs:
3131
timeout-minutes: 45
3232
name: Build and Push Images
3333
environment: release-beta-images
34-
runs-on: ubuntu-22.04
34+
runs-on: ubuntu-24.04
3535
strategy:
3636
matrix:
3737
include:
@@ -64,7 +64,7 @@ jobs:
6464

6565
steps:
6666
- name: Checkout main branch to access local actions
67-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
67+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
6868
with:
6969
ref: ${{ github.event.repository.default_branch }}
7070
persist-credentials: false
@@ -100,12 +100,12 @@ jobs:
100100
fi
101101
102102
- name: Checkout Source Code
103-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
103+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
104104
with:
105105
persist-credentials: false
106106

107107
- name: Release Build ${{ matrix.name }}
108-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
108+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
109109
id: docker_build_release
110110
with:
111111
provenance: false
@@ -163,7 +163,7 @@ jobs:
163163

164164
image-digests:
165165
name: Display Digests
166-
runs-on: ubuntu-22.04
166+
runs-on: ubuntu-24.04
167167
needs: build-and-push
168168
steps:
169169
- name: Downloading Image Digests

.github/workflows/build-images-ci.yaml

+11-11
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
steps:
5858
- name: Checkout default branch (trusted)
59-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
59+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
6060
with:
6161
ref: ${{ github.event.repository.default_branch }}
6262
persist-credentials: false
@@ -95,7 +95,7 @@ jobs:
9595
# Warning: since this is a privileged workflow, subsequent workflow job
9696
# steps must take care not to execute untrusted code.
9797
- name: Checkout pull request branch (NOT TRUSTED)
98-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
98+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
9999
with:
100100
persist-credentials: false
101101
ref: ${{ steps.tag.outputs.tag }}
@@ -120,7 +120,7 @@ jobs:
120120
121121
# Import GitHub's cache build to docker cache
122122
- name: Copy ${{ matrix.name }} Golang cache to docker cache
123-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
123+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
124124
with:
125125
provenance: false
126126
context: /tmp/.cache/${{ matrix.name }}
@@ -135,7 +135,7 @@ jobs:
135135
# main branch pushes
136136
- name: CI Build ${{ matrix.name }}
137137
if: ${{ github.event_name != 'pull_request_target' && !startsWith(github.ref_name, 'ft/') }}
138-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
138+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
139139
id: docker_build_ci
140140
with:
141141
provenance: false
@@ -155,7 +155,7 @@ jobs:
155155
156156
- name: CI race detection Build ${{ matrix.name }}
157157
if: ${{ github.event_name != 'pull_request_target' && !startsWith(github.ref_name, 'ft/') }}
158-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
158+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
159159
id: docker_build_ci_detect_race_condition
160160
with:
161161
provenance: false
@@ -177,7 +177,7 @@ jobs:
177177
178178
- name: CI Unstripped Binaries Build ${{ matrix.name }}
179179
if: ${{ github.event_name != 'pull_request_target' && !startsWith(github.ref_name, 'ft/') }}
180-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
180+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
181181
id: docker_build_ci_unstripped
182182
with:
183183
provenance: false
@@ -287,7 +287,7 @@ jobs:
287287
# PR or feature branch updates
288288
- name: CI Build ${{ matrix.name }}
289289
if: ${{ github.event_name == 'pull_request_target' || (github.event_name == 'push' && startsWith(github.ref_name, 'ft/')) }}
290-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
290+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
291291
id: docker_build_ci_pr
292292
with:
293293
provenance: false
@@ -303,7 +303,7 @@ jobs:
303303
304304
- name: CI race detection Build ${{ matrix.name }}
305305
if: ${{ github.event_name == 'pull_request_target' || (github.event_name == 'push' && startsWith(github.ref_name, 'ft/')) }}
306-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
306+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
307307
id: docker_build_ci_pr_detect_race_condition
308308
with:
309309
provenance: false
@@ -321,7 +321,7 @@ jobs:
321321
322322
- name: CI Unstripped Binaries Build ${{ matrix.name }}
323323
if: ${{ github.event_name == 'pull_request_target' || (github.event_name == 'push' && startsWith(github.ref_name, 'ft/')) }}
324-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
324+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
325325
id: docker_build_ci_pr_unstripped
326326
with:
327327
provenance: false
@@ -412,7 +412,7 @@ jobs:
412412
# Store docker's golang's cache build locally only on the main branch
413413
- name: Store ${{ matrix.name }} Golang cache build locally
414414
if: ${{ github.event_name != 'pull_request_target' && steps.cache.outputs.cache-hit != 'true' && github.ref_name == github.event.repository.default_branch }}
415-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
415+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
416416
with:
417417
provenance: false
418418
context: .
@@ -438,7 +438,7 @@ jobs:
438438
image-digests:
439439
if: ${{ always() }}
440440
name: Display Digests
441-
runs-on: ubuntu-22.04
441+
runs-on: ubuntu-24.04
442442
needs: build-and-push-prs
443443
steps:
444444
- name: Downloading Image Digests

.github/workflows/build-images-docs-builder.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ concurrency:
2222
jobs:
2323
build-and-push:
2424
name: Build and Push Image
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-24.04
2626
timeout-minutes: 30
2727
environment: docs-builder
2828
outputs:
2929
tag: ${{ steps.docs-builder-tag.outputs.tag }}
3030
digest: ${{ steps.docker-build-docs-builder.outputs.digest }}
3131
steps:
3232
- name: Checkout default branch (trusted)
33-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
33+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3434
with:
3535
ref: ${{ github.event.repository.default_branch }}
3636
persist-credentials: false
@@ -47,7 +47,7 @@ jobs:
4747
# Warning: since this is a privileged workflow, subsequent workflow job
4848
# steps must take care not to execute untrusted code.
4949
- name: Checkout pull request branch (NOT TRUSTED)
50-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
50+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5151
with:
5252
persist-credentials: false
5353
ref: ${{ github.event.pull_request.head.sha }}
@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Build docs-builder image
8080
if: ${{ steps.docs-builder-tag-in-repositories.outputs.exists == 'false' }}
81-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
81+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
8282
id: docker-build-docs-builder
8383
with:
8484
provenance: false
@@ -94,12 +94,12 @@ jobs:
9494
name: Update Pull Request with new image reference
9595
needs: build-and-push
9696
if: needs.build-and-push.outputs.digest
97-
runs-on: ubuntu-22.04
97+
runs-on: ubuntu-24.04
9898
timeout-minutes: 10
9999
environment: docs-builder
100100
steps:
101101
- name: Checkout default branch (trusted)
102-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
102+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
103103
with:
104104
ref: ${{ github.event.repository.default_branch }}
105105
persist-credentials: false
@@ -110,7 +110,7 @@ jobs:
110110
# Warning: since this is a privileged workflow, subsequent workflow job
111111
# steps must take care not to execute untrusted code.
112112
- name: Checkout pull request branch (NOT TRUSTED)
113-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
113+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
114114
with:
115115
persist-credentials: false
116116
ref: ${{ github.event.pull_request.head.sha }}
@@ -147,11 +147,11 @@ jobs:
147147
name: Retrieve and display image digest
148148
needs: build-and-push
149149
if: needs.build-and-push.outputs.digest
150-
runs-on: ubuntu-22.04
150+
runs-on: ubuntu-24.04
151151
timeout-minutes: 10
152152
steps:
153153
- name: Checkout default branch (trusted)
154-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
154+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
155155
with:
156156
ref: ${{ github.event.repository.default_branch }}
157157
persist-credentials: false

.github/workflows/build-images-hotfixes.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 45
1717
name: Build and Push Images
1818
environment: release-developer-images
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
strategy:
2121
matrix:
2222
include:
@@ -49,7 +49,7 @@ jobs:
4949

5050
steps:
5151
- name: Checkout main branch to access local actions
52-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
52+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5353
with:
5454
ref: ${{ github.event.repository.default_branch }}
5555
persist-credentials: false
@@ -85,12 +85,12 @@ jobs:
8585
fi
8686
8787
- name: Checkout Source Code
88-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
88+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
8989
with:
9090
persist-credentials: false
9191

9292
- name: Release Build ${{ matrix.name }}
93-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
93+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
9494
id: docker_build_release
9595
with:
9696
provenance: false
@@ -157,7 +157,7 @@ jobs:
157157

158158
image-digests:
159159
name: Display Digests
160-
runs-on: ubuntu-22.04
160+
runs-on: ubuntu-24.04
161161
needs: build-and-push
162162
steps:
163163
- name: Downloading Image Digests

.github/workflows/build-images-releases.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 45
1818
name: Build and Push Images
1919
environment: release
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
strategy:
2222
matrix:
2323
include:
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Checkout main branch to access local actions
53-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
53+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5454
with:
5555
ref: ${{ github.event.repository.default_branch }}
5656
persist-credentials: false
@@ -90,12 +90,12 @@ jobs:
9090
fi
9191
9292
- name: Checkout Source Code
93-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
93+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
9494
with:
9595
persist-credentials: false
9696

9797
- name: Release Build ${{ matrix.name }}
98-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
98+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
9999
id: docker_build_release
100100
with:
101101
provenance: false
@@ -174,7 +174,7 @@ jobs:
174174

175175
image-digests:
176176
name: Display Digests
177-
runs-on: ubuntu-22.04
177+
runs-on: ubuntu-24.04
178178
needs: build-and-push
179179
steps:
180180
- name: Getting image tag

.github/workflows/conformance-aks.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
echo-inputs:
6767
if: ${{ github.event_name == 'workflow_dispatch' }}
6868
name: Echo Workflow Dispatch Inputs
69-
runs-on: ubuntu-22.04
69+
runs-on: ubuntu-24.04
7070
steps:
7171
- name: Echo Workflow Dispatch Inputs
7272
run: |
@@ -89,7 +89,7 @@ jobs:
8989
empty: ${{ steps.set-matrix.outputs.empty }}
9090
steps:
9191
- name: Checkout context ref (trusted)
92-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
92+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
9393
with:
9494
ref: ${{ inputs.context-ref || github.sha }}
9595
persist-credentials: false
@@ -159,7 +159,7 @@ jobs:
159159

160160
steps:
161161
- name: Checkout context ref (trusted)
162-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
162+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
163163
with:
164164
ref: ${{ inputs.context-ref || github.sha }}
165165
persist-credentials: false
@@ -251,7 +251,7 @@ jobs:
251251
# Warning: since this is a privileged workflow, subsequent workflow job
252252
# steps must take care not to execute untrusted code.
253253
- name: Checkout pull request branch (NOT TRUSTED)
254-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
254+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
255255
with:
256256
ref: ${{ steps.vars.outputs.sha }}
257257
persist-credentials: false

0 commit comments

Comments
 (0)