Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check_migrations_sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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') }}
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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') }}
Expand Down Expand Up @@ -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:
Expand All @@ -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
Expand Down
Loading