From 7b6cd4dad1565558759a99ea0a59873e3b7c3e08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 00:08:32 +0000 Subject: [PATCH] Bump the github group with 3 updates Bumps the github group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 6.0.3 to 7.0.0 - [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.3...v7.0.0) Updates `actions/cache` from 5.0.5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5.0.5...v6.1.0) Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6.2.0...v6.3.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github ... Signed-off-by: dependabot[bot] --- .github/workflows/check-docs.yml | 2 +- .github/workflows/check_migrations_sqlite.yml | 6 +++--- .github/workflows/pre-commit.yml | 2 +- .github/workflows/python-publish.yml | 2 +- .github/workflows/tox.yml | 20 +++++++++---------- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/check-docs.yml b/.github/workflows/check-docs.yml index 8dae7f0b..61d7ac98 100644 --- a/.github/workflows/check-docs.yml +++ b/.github/workflows/check-docs.yml @@ -26,7 +26,7 @@ jobs: if: ${{ needs.pre_job.outputs.should_skip != 'true' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 with: fetch-depth: 0 - name: Install system dependencies diff --git a/.github/workflows/check_migrations_sqlite.yml b/.github/workflows/check_migrations_sqlite.yml index cddbb77b..1d5703e1 100644 --- a/.github/workflows/check_migrations_sqlite.yml +++ b/.github/workflows/check_migrations_sqlite.yml @@ -26,7 +26,7 @@ jobs: if: ${{ needs.pre_job.outputs.should_skip != 'true' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 with: fetch-depth: 0 - name: Install uv @@ -59,7 +59,7 @@ jobs: echo "Acquire::Check-Valid-Until \"false\";" > /etc/apt/apt.conf.d/99archive apt-get -y -qq update apt-get install -y build-essential tcl git-lfs - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 with: lfs: true fetch-depth: 0 @@ -80,7 +80,7 @@ jobs: 'import sqlite3; assert sqlite3.connect(":memory").execute("select sqlite_version()").fetchone()[0] == "3.25.3"' # Once we have confirmed that this works, set it for subsequent steps echo "LD_PRELOAD=$(realpath .libs/libsqlite3.so)" >> $GITHUB_ENV - - uses: actions/cache@v5.0.5 + - uses: actions/cache@v6.1.0 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }} diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 3e95dc9e..702d421f 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -32,7 +32,7 @@ jobs: if: ${{ needs.pre_job.outputs.should_skip != 'true' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - uses: astral-sh/setup-uv@v8.2.0 with: enable-cache: true diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index ca248395..f1ed19fe 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -8,7 +8,7 @@ jobs: deploy: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 with: fetch-depth: 0 - name: Install uv diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 8b5797c9..d83be25d 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -26,7 +26,7 @@ jobs: if: ${{ needs.pre_job.outputs.should_skip != 'true' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 with: fetch-depth: 0 - name: Install uv @@ -53,7 +53,7 @@ jobs: matrix: python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14'] steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Download wheel artifact uses: actions/download-artifact@v8.0.1 with: @@ -82,7 +82,7 @@ jobs: container: image: python:${{ matrix.python-version }}-buster steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Download wheel artifact uses: actions/download-artifact@v8.0.1 with: @@ -100,7 +100,7 @@ jobs: python -m pip install --upgrade pip pip install tox - name: tox env cache - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }} key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }} @@ -119,7 +119,7 @@ jobs: matrix: python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14'] steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Download wheel artifact uses: actions/download-artifact@v8.0.1 with: @@ -153,7 +153,7 @@ jobs: container: image: python:${{ matrix.python-version }}-buster steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Download wheel artifact uses: actions/download-artifact@v8.0.1 with: @@ -178,7 +178,7 @@ jobs: python -m pip install --upgrade pip pip install tox - name: tox env cache - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}-cryptography${{ env.cryptography_version }} key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-crypto${{ env.cryptography_version }}-${{ hashFiles('pyproject.toml') }} @@ -207,7 +207,7 @@ jobs: # Maps tcp port 5432 on service container to the host - 5432:5432 steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Download wheel artifact uses: actions/download-artifact@v8.0.1 with: @@ -234,14 +234,14 @@ jobs: matrix: python-version: [3.8] steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 - name: Download wheel artifact uses: actions/download-artifact@v8.0.1 with: name: wheel path: dist/ - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: ${{ matrix.python-version }} - name: Install uv