From 6a7240060a2c717fc69e5856bee34570273578a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 16:26:29 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Bump=20the=20actions=20group=20a?= =?UTF-8?q?cross=201=20directory=20with=204=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the actions group with 4 updates in the / directory: [actions/deploy-pages](https://github.com/actions/deploy-pages), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](https://github.com/actions/deploy-pages/compare/v4...v5) 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 `astral-sh/setup-uv` from 7.3.0 to 7.6.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v7.3.0...v7.6.0) --- updated-dependencies: - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 7.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build_docs.yml | 2 +- .github/workflows/build_wheels.yml | 10 +++++----- .github/workflows/typecheck.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index d9fd750..9be8eba 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -41,4 +41,4 @@ jobs: - name: Deploy to GitHub Pages if: github.event_name != 'pull_request' id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 9c52e1e..8ffe5b0 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -50,7 +50,7 @@ jobs: run: | python -m cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: path: ./wheelhouse/*.whl name: wheels-linux @@ -109,7 +109,7 @@ jobs: run: | python -m cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: path: ./wheelhouse/*.whl name: wheels-${{ matrix.os }} @@ -164,7 +164,7 @@ jobs: python -m cibuildwheel --output-dir wheelhouse if (-not (Test-Path wheelhouse/*.whl)) { throw "Wheel was not created" } - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: path: ./wheelhouse/*.whl name: wheels-windows-${{ matrix.architecture }} @@ -198,7 +198,7 @@ jobs: pytest -s tests - name: Upload SDist artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: sdist path: ./dist/*.tar.gz @@ -224,7 +224,7 @@ jobs: steps: - name: Download all workflow run artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: pattern: "*" path: dist diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index a168185..f3719e8 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: astral-sh/setup-uv@v7.3.0 + - uses: astral-sh/setup-uv@v7.6.0 with: activate-environment: true python-version: "3.12"