Skip to content

Commit 52fd169

Browse files
Bump the github group across 1 directory with 3 updates
Bumps the github group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent bd61ff5 commit 52fd169

4 files changed

Lines changed: 22 additions & 22 deletions

File tree

.github/workflows/check-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
25-
- uses: actions/setup-python@v5
24+
- uses: actions/checkout@v6
25+
- uses: actions/setup-python@v6
2626
with:
2727
python-version: 3.9
2828
- name: pip cache
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ~/.cache/pip
3232
key: ${{ runner.os }}-pip-docs-${{ hashFiles('requirements/docs.txt') }}

.github/workflows/check_migrations_sqlite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "Acquire::Check-Valid-Until \"false\";" > /etc/apt/apt.conf.d/99archive
2929
apt-get -y -qq update
3030
apt-get install -y build-essential tcl git-lfs
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
3333
with:
3434
lfs: true
@@ -45,7 +45,7 @@ jobs:
4545
'import sqlite3; assert sqlite3.connect(":memory").execute("select sqlite_version()").fetchone()[0] == "3.25.3"'
4646
# Once we have confirmed that this works, set it for subsequent steps
4747
echo "LD_PRELOAD=$(realpath .libs/libsqlite3.so)" >> $GITHUB_ENV
48-
- uses: actions/cache@v4
48+
- uses: actions/cache@v5
4949
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
5050
with:
5151
path: ~/.cache/pip

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
deploy:
1717
runs-on: ubuntu-22.04
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: 3.9
2424
- name: Install dependencies

.github/workflows/tox.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
matrix:
2323
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- name: Set up Python ${{ matrix.python-version }}
2727
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Install tox
@@ -35,7 +35,7 @@ jobs:
3535
pip install tox
3636
- name: tox env cache
3737
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
4141
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -53,15 +53,15 @@ jobs:
5353
container:
5454
image: python:${{ matrix.python-version }}-buster
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
5757
- name: Install tox
5858
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
5959
run: |
6060
python -m pip install --upgrade pip
6161
pip install tox
6262
- name: tox env cache
6363
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
6767
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -79,10 +79,10 @@ jobs:
7979
matrix:
8080
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
8181
steps:
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v6
8383
- name: Set up Python ${{ matrix.python-version }}
8484
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
85-
uses: actions/setup-python@v5
85+
uses: actions/setup-python@v6
8686
with:
8787
python-version: ${{ matrix.python-version }}
8888
- name: Install system dependencies
@@ -97,7 +97,7 @@ jobs:
9797
pip install tox
9898
- name: tox env cache
9999
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
100-
uses: actions/cache@v4
100+
uses: actions/cache@v5
101101
with:
102102
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}-cryptography${{ env.cryptography_version }}
103103
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-crypto${{ env.cryptography_version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -117,7 +117,7 @@ jobs:
117117
container:
118118
image: python:${{ matrix.python-version }}-buster
119119
steps:
120-
- uses: actions/checkout@v4
120+
- uses: actions/checkout@v6
121121
- name: Install system dependencies
122122
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
123123
run: |
@@ -133,7 +133,7 @@ jobs:
133133
pip install tox
134134
- name: tox env cache
135135
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
136-
uses: actions/cache@v4
136+
uses: actions/cache@v5
137137
with:
138138
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}-cryptography${{ env.cryptography_version }}
139139
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-crypto${{ env.cryptography_version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -161,10 +161,10 @@ jobs:
161161
# Maps tcp port 5432 on service container to the host
162162
- 5432:5432
163163
steps:
164-
- uses: actions/checkout@v4
164+
- uses: actions/checkout@v6
165165
- name: Set up Python 3.9 for Postgres
166166
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
167-
uses: actions/setup-python@v5
167+
uses: actions/setup-python@v6
168168
with:
169169
python-version: 3.9
170170
- name: Install tox
@@ -174,7 +174,7 @@ jobs:
174174
pip install tox
175175
- name: tox env cache
176176
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
177-
uses: actions/cache@v4
177+
uses: actions/cache@v5
178178
with:
179179
path: ${{ github.workspace }}/.tox/py3.9-postgres
180180
key: ${{ runner.os }}-tox-py3.9-postgres-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -190,10 +190,10 @@ jobs:
190190
matrix:
191191
python-version: [3.8]
192192
steps:
193-
- uses: actions/checkout@v4
193+
- uses: actions/checkout@v6
194194
- name: Set up Python ${{ matrix.python-version }}
195195
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
196-
uses: actions/setup-python@v5
196+
uses: actions/setup-python@v6
197197
with:
198198
python-version: ${{ matrix.python-version }}
199199
- name: Install tox

0 commit comments

Comments
 (0)