From 79e77f4e499e916ab99ef0fc74377912d3ad8f73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 07:22:03 +0000 Subject: [PATCH] Bump the gha-updates group with 4 updates Bumps the gha-updates group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv), [actions/setup-python](https://github.com/actions/setup-python) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v6...v7) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.12.4...v1.13.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gha-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-examples.yaml | 4 ++-- .github/workflows/ci-integrations.yaml | 4 ++-- .github/workflows/ci-unittests.yaml | 4 ++-- .github/workflows/push_wheel.yaml | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-examples.yaml b/.github/workflows/ci-examples.yaml index c295885..320f6a4 100644 --- a/.github/workflows/ci-examples.yaml +++ b/.github/workflows/ci-examples.yaml @@ -27,9 +27,9 @@ jobs: UV_TORCH_BACKEND: cpu steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv and setup python - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: activate-environment: true python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/ci-integrations.yaml b/.github/workflows/ci-integrations.yaml index df57f26..c2032c9 100644 --- a/.github/workflows/ci-integrations.yaml +++ b/.github/workflows/ci-integrations.yaml @@ -36,9 +36,9 @@ jobs: UV_TORCH_BACKEND: cpu steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv and setup python - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: activate-environment: true python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/ci-unittests.yaml b/.github/workflows/ci-unittests.yaml index cfd71f7..b48514d 100644 --- a/.github/workflows/ci-unittests.yaml +++ b/.github/workflows/ci-unittests.yaml @@ -30,9 +30,9 @@ jobs: UV_TORCH_BACKEND: cpu steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv and setup python - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: activate-environment: true python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/push_wheel.yaml b/.github/workflows/push_wheel.yaml index 2830d40..cefe06d 100644 --- a/.github/workflows/push_wheel.yaml +++ b/.github/workflows/push_wheel.yaml @@ -17,8 +17,8 @@ jobs: runs-on: "ubuntu-22.04" timeout-minutes: 10 steps: - - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v6 + - uses: actions/setup-python@v6 with: python-version: "3.8" cache: "pip" @@ -46,7 +46,7 @@ jobs: # We do this, since failures on test.pypi aren't that bad - name: Publish to Test PyPI if: startsWith(github.event.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@v1.12.4 + uses: pypa/gh-action-pypi-publish@v1.13.0 with: user: __token__ password: ${{ secrets.test_pypi_password }} @@ -55,7 +55,7 @@ jobs: - name: Publish distribution 📦 to PyPI if: startsWith(github.event.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@v1.12.4 + uses: pypa/gh-action-pypi-publish@v1.13.0 with: user: __token__ password: ${{ secrets.pypi_password }}