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