Skip to content

Commit d6b7991

Browse files
authored
Update dependencies in GitHub Actions (#463)
1 parent f81047e commit d6b7991

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ jobs:
2121
name: "${{ matrix.os }} Python: ${{ matrix.python-version }}"
2222
services:
2323
redis:
24-
image: redis:6.2-alpine
24+
image: redis:8.0-alpine
2525
ports:
2626
- 6379:6379
2727
memcached:
2828
image: memcached:1.6-alpine
2929
ports:
3030
- 11211:11211
3131
mysql:
32-
image: mysql:8.0.27
32+
image: mysql:9.3.0
3333
env:
3434
MYSQL_ALLOW_EMPTY_PASSWORD: yes
3535
ports:
3636
- 3306:3306
3737
postgresql:
38-
image: postgis/postgis:14-3.5-alpine
38+
image: postgis/postgis:17-3.5-alpine
3939
env:
4040
POSTGRES_HOST_AUTH_METHOD: trust
4141
ports:
@@ -45,17 +45,17 @@ jobs:
4545
run: |
4646
sudo apt-get update
4747
sudo apt-get install binutils libproj-dev gdal-bin libmemcached-dev libsqlite3-mod-spatialite
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
4949
with:
5050
fetch-depth: 0
5151
- name: Set up Python ${{ matrix.python-version }}
52-
uses: actions/setup-python@v4
52+
uses: actions/setup-python@v5
5353
with:
5454
python-version: ${{ matrix.python-version }}
5555
- name: Install dependencies
5656
run: |
5757
pip install -U "pip>=23.1.1"
58-
pip install -U "tox-gh-actions==3.1.0" coverage
58+
pip install -U "tox-gh-actions==3.3.0" coverage
5959
- name: Log versions
6060
run: |
6161
python --version

.github/workflows/pre-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
permissions:
1111
id-token: write
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616
- name: Set up Python 3.9
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: 3.9
2020
- name: Install dependencies
@@ -26,7 +26,7 @@ jobs:
2626
- name: Build
2727
run: python -m build
2828
- name: Publish to PyPI
29-
uses: pypa/gh-action-pypi-publish@v1.8.5
29+
uses: pypa/gh-action-pypi-publish@v1.12.4
3030
with:
3131
skip-existing: true
3232
verbose: true

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ jobs:
3838
permissions:
3939
id-token: write
4040
steps:
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
with:
4343
ref: ${{ needs.determine-tag.outputs.release-tag }}
4444
fetch-depth: 0
4545
- name: Set up Python 3.9
46-
uses: actions/setup-python@v4
46+
uses: actions/setup-python@v5
4747
with:
4848
python-version: 3.9
4949
- name: Install dependencies
@@ -53,7 +53,7 @@ jobs:
5353
- name: Build
5454
run: python -m build
5555
- name: Publish to PyPI
56-
uses: pypa/gh-action-pypi-publish@v1.8.5
56+
uses: pypa/gh-action-pypi-publish@v1.12.4
5757
with:
5858
skip-existing: true
5959
verbose: true

0 commit comments

Comments
 (0)