Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #469

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading