From b667fecddbcd27e27a169791c5520d2e65372950 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 19:45:45 +0000 Subject: [PATCH 1/2] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/periodic_benchmarks.yml | 2 +- .github/workflows/publish_pypi.yml | 6 +++--- .github/workflows/run_benchmarks_over_history.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/periodic_benchmarks.yml b/.github/workflows/periodic_benchmarks.yml index 9bd105ae92..91947e8983 100644 --- a/.github/workflows/periodic_benchmarks.yml +++ b/.github/workflows/periodic_benchmarks.yml @@ -48,7 +48,7 @@ jobs: LD_LIBRARY_PATH: $HOME/.local/lib - name: Upload results as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: asv_new_results path: results diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index b003152802..97496c6aba 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -57,7 +57,7 @@ jobs: CIBW_ARCHS: "AMD64" - name: Upload Windows wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: windows_wheels path: ./wheelhouse/*.whl @@ -110,7 +110,7 @@ jobs: CIBW_SKIP: "pp* *musllinux*" - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheels path: ./wheelhouse/*.whl @@ -133,7 +133,7 @@ jobs: run: pipx run build --sdist - name: Upload SDist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: sdist path: ./dist/*.tar.gz diff --git a/.github/workflows/run_benchmarks_over_history.yml b/.github/workflows/run_benchmarks_over_history.yml index cb16f65847..db379b5b40 100644 --- a/.github/workflows/run_benchmarks_over_history.yml +++ b/.github/workflows/run_benchmarks_over_history.yml @@ -42,7 +42,7 @@ jobs: asv run -m "GitHubRunner" -s ${{ github.event.inputs.ncommits }} \ ${{ github.event.inputs.commit_start }}..${{ github.event.inputs.commit_end }} - name: Upload results as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: asv_new_results path: results From c2be73849c3a50ba319fb14fbe15063e0a2c63d6 Mon Sep 17 00:00:00 2001 From: Saransh Chopra Date: Tue, 19 Dec 2023 14:56:57 +0530 Subject: [PATCH 2/2] Unique names for artifacts --- .github/workflows/periodic_benchmarks.yml | 2 +- .github/workflows/run_benchmarks_over_history.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/periodic_benchmarks.yml b/.github/workflows/periodic_benchmarks.yml index 91947e8983..43d74d822d 100644 --- a/.github/workflows/periodic_benchmarks.yml +++ b/.github/workflows/periodic_benchmarks.yml @@ -50,7 +50,7 @@ jobs: - name: Upload results as artifact uses: actions/upload-artifact@v4 with: - name: asv_new_results + name: asv_periodic_results path: results publish-results: diff --git a/.github/workflows/run_benchmarks_over_history.yml b/.github/workflows/run_benchmarks_over_history.yml index db379b5b40..e854a1fffc 100644 --- a/.github/workflows/run_benchmarks_over_history.yml +++ b/.github/workflows/run_benchmarks_over_history.yml @@ -44,7 +44,7 @@ jobs: - name: Upload results as artifact uses: actions/upload-artifact@v4 with: - name: asv_new_results + name: asv_over_history_results path: results publish-results: