From e0665dbab2ccf71589a2a298be6511b3ad73fc74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 12:48:35 +0000 Subject: [PATCH] Bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `dawidd6/action-download-artifact` from 13 to 16 - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](https://github.com/dawidd6/action-download-artifact/compare/v13...v16) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: dawidd6/action-download-artifact dependency-version: '16' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/documentation.yml | 4 ++-- .github/workflows/pre_commit.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/python_wheel.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 3c63fa6..96b130d 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -22,7 +22,7 @@ jobs: working-directory: docs/ run: uv run --no-project make html SPHINXOPTS="-W --keep-going" # TODO also use -n in the future - name: Upload artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: docs path: docs/_build/html @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v6 - name: Download artifacts docs - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: docs path: public/sphinx/html diff --git a/.github/workflows/pre_commit.yml b/.github/workflows/pre_commit.yml index e0da4e4..2512b12 100644 --- a/.github/workflows/pre_commit.yml +++ b/.github/workflows/pre_commit.yml @@ -18,7 +18,7 @@ jobs: - uses: pre-commit/action@v3.0.1 - run: git diff --output=format.patch --exit-code || { cat format.patch; false; } if: failure() - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: failure() with: name: format.patch diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c693cef..d455ccf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Download artifact id: download-artifact - uses: dawidd6/action-download-artifact@v13 + uses: dawidd6/action-download-artifact@v16 with: run_id: ${{ github.event.inputs.python_wheel_workflow_run_id }} name: dist diff --git a/.github/workflows/python_wheel.yml b/.github/workflows/python_wheel.yml index d23a4e8..96201b9 100644 --- a/.github/workflows/python_wheel.yml +++ b/.github/workflows/python_wheel.yml @@ -28,7 +28,7 @@ jobs: uv pip install dist/rydstate*.whl uv run --no-project pytest - name: Upload wheels - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: dist path: dist/rydstate* @@ -49,7 +49,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: dist pattern: dist