From 9b10d1f834671f9631d0773ae8563fdaa7831708 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 02:16:15 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/generate-examples.yml | 2 +- .github/workflows/tests.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72a54ca6..43f00d23 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -290,7 +290,7 @@ jobs: fi - name: Archive code coverage results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: code-coverage-report-${{ matrix.python-version }} path: coverage.xml @@ -298,7 +298,7 @@ jobs: - name: Archive documentation if: matrix.python-version == '3.11' && github.event_name == 'push' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: documentation-html path: docs/_build/html/ diff --git a/.github/workflows/generate-examples.yml b/.github/workflows/generate-examples.yml index 4075b95f..6ac71034 100644 --- a/.github/workflows/generate-examples.yml +++ b/.github/workflows/generate-examples.yml @@ -348,7 +348,7 @@ jobs: - name: Upload auto_examples as artifact (backup) if: steps.changed-examples.outputs.examples_changed == 'true' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: auto_examples-${{ github.sha }} path: docs/auto_examples.zip diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8e6a622c..13192733 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -265,7 +265,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test-results-python-${{ matrix.python-version }} path: |