Skip to content

Commit 2f4646c

Browse files
chore(deps): bump actions/download-artifact from 4.3.0 to 8.0.0 (#63065)
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) --- 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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2d6f71c commit 2f4646c

7 files changed

Lines changed: 12 additions & 12 deletions

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ jobs:
978978
shell: bash
979979
run: ./scripts/tools/free_up_disk_space.sh
980980
- name: "Download all test warning artifacts from the current build"
981-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
981+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
982982
with:
983983
path: ./artifacts
984984
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -231,17 +231,17 @@ jobs:
231231
shell: bash
232232
run: rm -fv ./dist/* ./docker-context-files/*
233233
- name: "Download packages prepared as artifacts"
234-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
234+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
235235
with:
236236
name: prod-packages
237237
path: ./docker-context-files
238-
- name: "Show downloaded packages"
239-
run: ls -la ./docker-context-files
240238
- name: "Download constraints"
241-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
239+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
242240
with:
243-
pattern: constraints-*
244-
path: ./docker-context-files
241+
name: constraints-${{ matrix.python-version }}
242+
path: ./docker-context-files/constraints-${{ matrix.python-version }}
243+
- name: "Show downloaded files"
244+
run: ls -R ./docker-context-files
245245
- name: "Show constraints"
246246
run: |
247247
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
@@ -314,7 +314,7 @@ jobs:
314314
- name: "Install Breeze"
315315
uses: ./.github/actions/breeze
316316
- name: "Download docs prepared as artifacts"
317-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
317+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
318318
with:
319319
name: airflow-docs
320320
path: /mnt/_build

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
- name: "Cleanup dist and context file"
195195
run: rm -fv ./dist/* ./docker-context-files/*
196196
- name: "Download packages prepared as artifacts"
197-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
197+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
198198
with:
199199
name: prod-packages
200200
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
@@ -190,7 +190,7 @@ jobs:
190190
ACTOR: ${{ github.actor }}
191191
run: echo "${GITHUB_TOKEN}" | docker login ghcr.io -u ${ACTOR} --password-stdin
192192
- name: "Download metadata artifacts"
193-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
193+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
194194
with:
195195
path: ./dist
196196
pattern: metadata-${{ inputs.pythonVersion }}-*

0 commit comments

Comments
 (0)