From b4340c38995d4e964697fd9b3d97cf2aed769c20 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 23:26:47 +0000 Subject: [PATCH] Bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 7.0.0 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/v7.0.0...v7.0.1) Updates `astral-sh/setup-uv` from 8.3.2 to 9.0.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v8.3.2...v9.0.0) Updates `actions/setup-python` from 6.3.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6.3.0...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch 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 ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-docs.yaml | 6 +++--- .github/workflows/main.yaml | 6 +++--- .github/workflows/test_pages_build.yaml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy-docs.yaml b/.github/workflows/deploy-docs.yaml index 20bd747..6b68ca8 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@v7.0.0 + 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.3.2 + 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.3.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 277ee00..4f2c0bc 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@v7.0.0 + 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.3.2 + 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.3.0 + uses: actions/setup-python@v7.0.0 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/test_pages_build.yaml b/.github/workflows/test_pages_build.yaml index aa6f397..007b621 100644 --- a/.github/workflows/test_pages_build.yaml +++ b/.github/workflows/test_pages_build.yaml @@ -33,18 +33,18 @@ jobs: steps: # https://github.com/actions/checkout - name: Checkout - uses: actions/checkout@v7.0.0 + 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.3.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.3.2 + uses: astral-sh/setup-uv@v9.0.0 with: python-version: ${{ matrix.pyversion }} enable-cache: true