Skip to content

Commit 7b6cd4d

Browse files
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](actions/checkout@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](actions/cache@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](actions/setup-python@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] <support@github.com>
1 parent 3f22ca7 commit 7b6cd4d

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/check-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v6.0.3
29+
- uses: actions/checkout@v7.0.0
3030
with:
3131
fetch-depth: 0
3232
- name: Install system dependencies

.github/workflows/check_migrations_sqlite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v6.0.3
29+
- uses: actions/checkout@v7.0.0
3030
with:
3131
fetch-depth: 0
3232
- name: Install uv
@@ -59,7 +59,7 @@ jobs:
5959
echo "Acquire::Check-Valid-Until \"false\";" > /etc/apt/apt.conf.d/99archive
6060
apt-get -y -qq update
6161
apt-get install -y build-essential tcl git-lfs
62-
- uses: actions/checkout@v6.0.3
62+
- uses: actions/checkout@v7.0.0
6363
with:
6464
lfs: true
6565
fetch-depth: 0
@@ -80,7 +80,7 @@ jobs:
8080
'import sqlite3; assert sqlite3.connect(":memory").execute("select sqlite_version()").fetchone()[0] == "3.25.3"'
8181
# Once we have confirmed that this works, set it for subsequent steps
8282
echo "LD_PRELOAD=$(realpath .libs/libsqlite3.so)" >> $GITHUB_ENV
83-
- uses: actions/cache@v5.0.5
83+
- uses: actions/cache@v6.1.0
8484
with:
8585
path: ~/.cache/pip
8686
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v6.0.3
35+
- uses: actions/checkout@v7.0.0
3636
- uses: astral-sh/setup-uv@v8.2.0
3737
with:
3838
enable-cache: true

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
deploy:
99
runs-on: ubuntu-22.04
1010
steps:
11-
- uses: actions/checkout@v6.0.3
11+
- uses: actions/checkout@v7.0.0
1212
with:
1313
fetch-depth: 0
1414
- name: Install uv

.github/workflows/tox.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v6.0.3
29+
- uses: actions/checkout@v7.0.0
3030
with:
3131
fetch-depth: 0
3232
- name: Install uv
@@ -53,7 +53,7 @@ jobs:
5353
matrix:
5454
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
5555
steps:
56-
- uses: actions/checkout@v6.0.3
56+
- uses: actions/checkout@v7.0.0
5757
- name: Download wheel artifact
5858
uses: actions/download-artifact@v8.0.1
5959
with:
@@ -82,7 +82,7 @@ jobs:
8282
container:
8383
image: python:${{ matrix.python-version }}-buster
8484
steps:
85-
- uses: actions/checkout@v6.0.3
85+
- uses: actions/checkout@v7.0.0
8686
- name: Download wheel artifact
8787
uses: actions/download-artifact@v8.0.1
8888
with:
@@ -100,7 +100,7 @@ jobs:
100100
python -m pip install --upgrade pip
101101
pip install tox
102102
- name: tox env cache
103-
uses: actions/cache@v5.0.5
103+
uses: actions/cache@v6.1.0
104104
with:
105105
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
106106
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
@@ -119,7 +119,7 @@ jobs:
119119
matrix:
120120
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
121121
steps:
122-
- uses: actions/checkout@v6.0.3
122+
- uses: actions/checkout@v7.0.0
123123
- name: Download wheel artifact
124124
uses: actions/download-artifact@v8.0.1
125125
with:
@@ -153,7 +153,7 @@ jobs:
153153
container:
154154
image: python:${{ matrix.python-version }}-buster
155155
steps:
156-
- uses: actions/checkout@v6.0.3
156+
- uses: actions/checkout@v7.0.0
157157
- name: Download wheel artifact
158158
uses: actions/download-artifact@v8.0.1
159159
with:
@@ -178,7 +178,7 @@ jobs:
178178
python -m pip install --upgrade pip
179179
pip install tox
180180
- name: tox env cache
181-
uses: actions/cache@v5.0.5
181+
uses: actions/cache@v6.1.0
182182
with:
183183
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}-cryptography${{ env.cryptography_version }}
184184
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-crypto${{ env.cryptography_version }}-${{ hashFiles('pyproject.toml') }}
@@ -207,7 +207,7 @@ jobs:
207207
# Maps tcp port 5432 on service container to the host
208208
- 5432:5432
209209
steps:
210-
- uses: actions/checkout@v6.0.3
210+
- uses: actions/checkout@v7.0.0
211211
- name: Download wheel artifact
212212
uses: actions/download-artifact@v8.0.1
213213
with:
@@ -234,14 +234,14 @@ jobs:
234234
matrix:
235235
python-version: [3.8]
236236
steps:
237-
- uses: actions/checkout@v6.0.3
237+
- uses: actions/checkout@v7.0.0
238238
- name: Download wheel artifact
239239
uses: actions/download-artifact@v8.0.1
240240
with:
241241
name: wheel
242242
path: dist/
243243
- name: Set up Python ${{ matrix.python-version }}
244-
uses: actions/setup-python@v6.2.0
244+
uses: actions/setup-python@v6.3.0
245245
with:
246246
python-version: ${{ matrix.python-version }}
247247
- name: Install uv

0 commit comments

Comments
 (0)