From 35e9c0442352603482be380cd8441a5136cacf56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:46:44 +0000 Subject: [PATCH] Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows 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](https://github.com/actions/download-artifact/compare/v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmarks.yml | 2 +- .github/workflows/release.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index dbe9f5cb..cade3210 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c64856df..660b837e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 } @@ -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: | @@ -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')