Skip to content

Commit ff7ba92

Browse files
potiukdependabot[bot]
authored andcommitted
[v3-1-test] chore(deps): bump actions/download-artifact from 4.3.0 to 8.0.0 (#63065) (#63145)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.3.0 to 8.0.0. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@d3f86a1...70fc10c) (cherry picked from commit 2f4646c) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 8.0.0 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 91fffc0 commit ff7ba92

7 files changed

Lines changed: 19 additions & 10 deletions

.github/workflows/ci-amd-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ jobs:
979979
shell: bash
980980
run: ./scripts/tools/free_up_disk_space.sh
981981
- name: "Download all test warning artifacts from the current build"
982-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
982+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
983983
with:
984984
path: ./artifacts
985985
pattern: test-warnings-*

.github/workflows/ci-image-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ jobs:
312312
use-uv: ${{ inputs.use-uv }}
313313
make-mnt-writeable-and-cleanup: true
314314
- name: "Download docs prepared as artifacts"
315-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
315+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
316316
with:
317317
name: airflow-docs
318318
path: './generated/_build'

.github/workflows/finalize-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
persist-credentials: true
115115
fetch-depth: 0
116116
- name: "Download constraints from the constraints generated by build CI image"
117-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
117+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
118118
with:
119119
pattern: constraints-*
120120
path: ./files

.github/workflows/prod-image-build.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,13 @@ jobs:
138138
shell: bash
139139
run: rm -fv ./dist/* ./docker-context-files/*
140140
if: inputs.upload-package-artifact == 'true'
141+
- name: "Install prek"
142+
uses: ./.github/actions/install-prek
143+
id: prek
144+
with:
145+
python-version: ${{ matrix.python-version }}
146+
platform: ${{ inputs.platform }}
147+
save-cache: false
141148
- name: "Install Breeze"
142149
uses: ./.github/actions/breeze
143150
if: inputs.upload-package-artifact == 'true'
@@ -224,7 +231,7 @@ jobs:
224231
shell: bash
225232
run: rm -fv ./dist/* ./docker-context-files/*
226233
- name: "Download packages prepared as artifacts"
227-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
234+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
228235
with:
229236
name: prod-packages
230237
path: ./docker-context-files
@@ -235,10 +242,12 @@ jobs:
235242
- name: "Show downloaded packages"
236243
run: ls -la ./docker-context-files
237244
- name: "Download constraints"
238-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
245+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
239246
with:
240-
pattern: constraints-*
241-
path: ./docker-context-files
247+
name: constraints-${{ matrix.python-version }}
248+
path: ./docker-context-files/constraints-${{ matrix.python-version }}
249+
- name: "Show downloaded files"
250+
run: ls -R ./docker-context-files
242251
- name: "Show constraints"
243252
run: |
244253
for file in ./docker-context-files/constraints*/constraints*.txt

.github/workflows/publish-docs-to-s3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ jobs:
333333
- name: "Install Breeze"
334334
uses: ./.github/actions/breeze
335335
- name: "Download docs prepared as artifacts"
336-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
336+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
337337
with:
338338
name: airflow-docs
339339
path: /mnt/airflow-site

.github/workflows/push-image-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ jobs:
192192
- name: "Cleanup dist and context file"
193193
run: rm -fv ./dist/* ./docker-context-files/*
194194
- name: "Download packages prepared as artifacts"
195-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
195+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
196196
with:
197197
name: prod-packages
198198
path: ./docker-context-files

.github/workflows/release_single_dockerhub_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ jobs:
189189
ACTOR: ${{ github.actor }}
190190
run: echo "${GITHUB_TOKEN}" | docker login ghcr.io -u ${ACTOR} --password-stdin
191191
- name: "Download metadata artifacts"
192-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
192+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
193193
with:
194194
path: ./dist
195195
pattern: metadata-${{ inputs.pythonVersion }}-*

0 commit comments

Comments
 (0)