Skip to content

Commit

Permalink
Bump actions/download-artifact from 3 to 4.1.7 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 3 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...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 9b8df62 commit 35e9c04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- {name: checkout, uses: actions/checkout@v4, with: {submodules: recursive, fetch-depth: 0}}
- {name: install requirements, run: source .github/reqs.sh && c4_install_test_requirements $OS}
- name: Download vars.sh
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with: {name: vars.sh, path: ./}
- {name: show info, run: source .github/setenv.sh && c4_show_info}
- name: Install python 3.10 for plotting
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
steps:
- {name: checkout, uses: actions/checkout@v4, with: {submodules: recursive}}
- name: Download vars.sh
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with: {name: vars.sh, path: ./}
- name: Install python 3.9
uses: actions/setup-python@v5
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
steps:
- {name: checkout, uses: actions/checkout@v4, with: {submodules: recursive}}
- name: Download vars.sh
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with: {name: vars.sh, path: ./}
- {name: install requirements, run: source .github/reqs.sh && c4_install_test_requirements $OS}
- {name: show info, run: source .github/setenv.sh && c4_show_info }
Expand Down Expand Up @@ -302,10 +302,10 @@ jobs:
steps:
- {name: checkout, uses: actions/checkout@v4, with: {submodules: recursive}}
- name: Gather artifacts - ./assets
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with: {name: assets, path: assets}
- name: Gather artifacts - ./dist
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with: {name: dist, path: dist}
- name: Verify existing artifacts
run: |
Expand All @@ -315,7 +315,7 @@ jobs:
# Github
- name: Restore vars.sh
if: contains(github.ref, 'tags/v')
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with: {name: vars.sh, path: ./}
- name: Save vars for following steps
if: contains(github.ref, 'tags/v')
Expand Down

0 comments on commit 35e9c04

Please sign in to comment.