This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 2f4646c3ed5 chore(deps): bump actions/download-artifact from 4.3.0 to
8.0.0 (#63065)
2f4646c3ed5 is described below
commit 2f4646c3ed566e65ee17e644209893677b01a821
Author: Dependabot [bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Mar 8 19:02:04 2026 +0100
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](https://github.com/actions/download-artifact/compare/d3f86a106a0bac45b974a628896c90dbdf5c8093...70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3)
---
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>
---
.github/workflows/ci-amd-arm.yml | 2 +-
.github/workflows/ci-image-checks.yml | 2 +-
.github/workflows/finalize-tests.yml | 2 +-
.github/workflows/prod-image-build.yml | 12 ++++++------
.github/workflows/publish-docs-to-s3.yml | 2 +-
.github/workflows/push-image-cache.yml | 2 +-
.github/workflows/release_single_dockerhub_image.yml | 2 +-
7 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/ci-amd-arm.yml b/.github/workflows/ci-amd-arm.yml
index c06506f5520..fe125c2c2df 100644
--- a/.github/workflows/ci-amd-arm.yml
+++ b/.github/workflows/ci-amd-arm.yml
@@ -978,7 +978,7 @@ jobs:
shell: bash
run: ./scripts/tools/free_up_disk_space.sh
- name: "Download all test warning artifacts from the current build"
- uses:
actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
path: ./artifacts
pattern: test-warnings-*
diff --git a/.github/workflows/ci-image-checks.yml
b/.github/workflows/ci-image-checks.yml
index 585ac16a5b8..1af065e80f6 100644
--- a/.github/workflows/ci-image-checks.yml
+++ b/.github/workflows/ci-image-checks.yml
@@ -312,7 +312,7 @@ jobs:
use-uv: ${{ inputs.use-uv }}
make-mnt-writeable-and-cleanup: true
- name: "Download docs prepared as artifacts"
- uses:
actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: airflow-docs
path: './generated/_build'
diff --git a/.github/workflows/finalize-tests.yml
b/.github/workflows/finalize-tests.yml
index 6a6ae7d6b2e..f56f8192b2f 100644
--- a/.github/workflows/finalize-tests.yml
+++ b/.github/workflows/finalize-tests.yml
@@ -114,7 +114,7 @@ jobs:
persist-credentials: true
fetch-depth: 0
- name: "Download constraints from the constraints generated by build CI
image"
- uses:
actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
pattern: constraints-*
path: ./files
diff --git a/.github/workflows/prod-image-build.yml
b/.github/workflows/prod-image-build.yml
index e66caf80a1c..f8620fd2b84 100644
--- a/.github/workflows/prod-image-build.yml
+++ b/.github/workflows/prod-image-build.yml
@@ -231,17 +231,17 @@ jobs:
shell: bash
run: rm -fv ./dist/* ./docker-context-files/*
- name: "Download packages prepared as artifacts"
- uses:
actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: prod-packages
path: ./docker-context-files
- - name: "Show downloaded packages"
- run: ls -la ./docker-context-files
- name: "Download constraints"
- uses:
actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
- pattern: constraints-*
- path: ./docker-context-files
+ name: constraints-${{ matrix.python-version }}
+ path: ./docker-context-files/constraints-${{ matrix.python-version }}
+ - name: "Show downloaded files"
+ run: ls -R ./docker-context-files
- name: "Show constraints"
run: |
for file in ./docker-context-files/constraints*/constraints*.txt
diff --git a/.github/workflows/publish-docs-to-s3.yml
b/.github/workflows/publish-docs-to-s3.yml
index 963181cd256..715b0a9163f 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -314,7 +314,7 @@ jobs:
- name: "Install Breeze"
uses: ./.github/actions/breeze
- name: "Download docs prepared as artifacts"
- uses:
actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: airflow-docs
path: /mnt/_build
diff --git a/.github/workflows/push-image-cache.yml
b/.github/workflows/push-image-cache.yml
index 1ac5253a030..ccd59d13886 100644
--- a/.github/workflows/push-image-cache.yml
+++ b/.github/workflows/push-image-cache.yml
@@ -194,7 +194,7 @@ jobs:
- name: "Cleanup dist and context file"
run: rm -fv ./dist/* ./docker-context-files/*
- name: "Download packages prepared as artifacts"
- uses:
actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: prod-packages
path: ./docker-context-files
diff --git a/.github/workflows/release_single_dockerhub_image.yml
b/.github/workflows/release_single_dockerhub_image.yml
index cc427733962..35dae34d3cd 100644
--- a/.github/workflows/release_single_dockerhub_image.yml
+++ b/.github/workflows/release_single_dockerhub_image.yml
@@ -190,7 +190,7 @@ jobs:
ACTOR: ${{ github.actor }}
run: echo "${GITHUB_TOKEN}" | docker login ghcr.io -u ${ACTOR}
--password-stdin
- name: "Download metadata artifacts"
- uses:
actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
+ uses:
actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
path: ./dist
pattern: metadata-${{ inputs.pythonVersion }}-*