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 @@ -19,7 +19,7 @@ jobs:
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Install system dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check_migrations_sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
needs: pre_job
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Install uv
Expand Down Expand Up @@ -52,7 +52,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
- uses: actions/checkout@v6.0.2
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
with:
lfs: 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 @@ -9,7 +9,7 @@ jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Install uv
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
needs: pre_job
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Install uv
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
matrix:
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Download wheel artifact
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
container:
image: python:${{ matrix.python-version }}-buster
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Download wheel artifact
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
matrix:
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Download wheel artifact
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
container:
image: python:${{ matrix.python-version }}-buster
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Download wheel artifact
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Download wheel artifact
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Download wheel artifact
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
uses: actions/download-artifact@v8
Expand Down
Loading