From c853bf511edbc69eb27f16fe1be5e75e973ae15c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 08:16:13 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [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 6.0.2 to 7.0.1 - [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/v6.0.2...v7.0.1) Updates `astral-sh/setup-uv` from 8.1.0 to 9.0.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v8.1.0...v9.0.0) Updates `actions/setup-python` from 6.2.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6.2.0...v7.0.0) Updates `pypa/gh-action-pypi-publish` from 1.14.0 to 1.14.2 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.14.0...v1.14.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: astral-sh/setup-uv dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-docs.yaml | 6 +++--- .github/workflows/main.yaml | 6 +++--- .github/workflows/pypi-publish.yaml | 10 +++++----- .github/workflows/test_pages_build.yaml | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/deploy-docs.yaml b/.github/workflows/deploy-docs.yaml index f686bf1..6122a3b 100644 --- a/.github/workflows/deploy-docs.yaml +++ b/.github/workflows/deploy-docs.yaml @@ -24,7 +24,7 @@ jobs: steps: # https://github.com/actions/checkout - name: Checkout - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 with: fetch-depth: 0 # otherwise, you will fail to push refs to dest repo @@ -37,7 +37,7 @@ jobs: # https://github.com/astral-sh/setup-uv - name: Install uv - uses: astral-sh/setup-uv@v8.1.0 + uses: astral-sh/setup-uv@v9.0.0 with: python-version: ${{ matrix.pyversion }} enable-cache: true @@ -45,7 +45,7 @@ jobs: # https://github.com/actions/setup-python - name: Set up Python - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v7.0.0 with: python-version: ${{ matrix.pyversion }} diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a5ce87d..68b114b 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -26,13 +26,13 @@ jobs: # https://github.com/actions/checkout - name: Check out repository - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 with: persist-credentials: false # https://github.com/astral-sh/setup-uv - name: Install uv - uses: astral-sh/setup-uv@v8.1.0 + uses: astral-sh/setup-uv@v9.0.0 with: python-version: ${{ matrix.python-version }} enable-cache: true @@ -40,7 +40,7 @@ jobs: # https://github.com/actions/setup-python - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v7.0.0 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/pypi-publish.yaml b/.github/workflows/pypi-publish.yaml index 25ed77a..3adb947 100644 --- a/.github/workflows/pypi-publish.yaml +++ b/.github/workflows/pypi-publish.yaml @@ -32,13 +32,13 @@ jobs: steps: # https://github.com/actions/checkout - name: Check out repository - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 with: persist-credentials: false # https://github.com/astral-sh/setup-uv - name: Install uv - uses: astral-sh/setup-uv@v8.1.0 + uses: astral-sh/setup-uv@v9.0.0 with: python-version: ${{ matrix.pyversion }} @@ -47,7 +47,7 @@ jobs: # https://github.com/actions/setup-python - name: Set up Python - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v7.0.0 with: python-version: ${{ matrix.pyversion }} @@ -87,14 +87,14 @@ jobs: # https://github.com/pypa/gh-action-pypi-publish - name: Publish package 📦 to Test PyPI if: github.event_name == 'push' - uses: pypa/gh-action-pypi-publish@v1.14.0 + uses: pypa/gh-action-pypi-publish@v1.14.2 with: repository-url: https://test.pypi.org/legacy/ verbose: true - name: Publish package 📦 to PyPI if: github.event_name == 'release' - uses: pypa/gh-action-pypi-publish@v1.14.0 + uses: pypa/gh-action-pypi-publish@v1.14.2 with: verbose: true diff --git a/.github/workflows/test_pages_build.yaml b/.github/workflows/test_pages_build.yaml index 05e99fb..ea4b170 100644 --- a/.github/workflows/test_pages_build.yaml +++ b/.github/workflows/test_pages_build.yaml @@ -33,20 +33,20 @@ jobs: steps: # https://github.com/actions/checkout - name: Checkout - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 with: fetch-depth: 0 # https://github.com/actions/setup-python - name: Set up Python - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v7.0.0 with: python-version: ${{ matrix.pyversion }} # https://github.com/astral-sh/setup-uv - name: Install uv - uses: astral-sh/setup-uv@v8.1.0 + uses: astral-sh/setup-uv@v9.0.0 with: python-version: ${{ matrix.pyversion }}