Skip to content

Commit

Permalink
build(deps): bump actions/download-artifact in /.github/workflows
Browse files Browse the repository at this point in the history
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v2...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 3, 2024
1 parent 3084a60 commit b320b66
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
submodules: true

- name: Download the executable from previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: gprofiler_x86_64
path: dist/
Expand Down Expand Up @@ -155,13 +155,13 @@ jobs:
run: ./scripts/verify_tag.sh

- name: Download x86_64 executable from a previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: gprofiler_x86_64
path: output/

- name: Download aarch64 executable from a previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: gprofiler_aarch64
path: output/
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
fetch-depth: 0

- name: Download executables from the previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: gprofiler_x86_64
path: output/
Expand Down Expand Up @@ -250,13 +250,13 @@ jobs:
submodules: true

- name: Download the executable from previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: gprofiler_x86_64
path: output/

- name: Download the image from previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: gprofiler_x86_64.img
path: output/
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
uses: docker/setup-buildx-action@v1

- name: Download executables from the previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: gprofiler_aarch64
path: output/
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
# build-container-aarch64 has pushed the image to DockerHub, so we'll pull it later when creating
# the manifest.
- name: Download the x86_64 image from previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: gprofiler_x86_64.img
path: output/
Expand Down

0 comments on commit b320b66

Please sign in to comment.