Skip to content

Commit 8e9928b

Browse files
committed
ci: update workflows
1 parent efcda17 commit 8e9928b

File tree

3 files changed

+15
-22
lines changed

3 files changed

+15
-22
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
name: Publish
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v3
1515
with:
1616
python-version: "3.x"
1717
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
name: Lint
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-python@v2
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-python@v3
1717
with:
18-
python-version: "3.11"
19-
- uses: pre-commit/action@v2.0.3
18+
python-version: "3.13"
19+
- uses: pre-commit/action@v3.0.1
2020
with:
2121
token: ${{ secrets.GITHUB_TOKEN }}
2222

@@ -26,25 +26,18 @@ jobs:
2626
needs: lint
2727
strategy:
2828
matrix:
29-
python-version: ["3.8", "3.9", "3.10", "3.11"]
30-
django-version: ["4.1", "4.2"]
31-
wagtail-version: ["4.0", "5.0", "6.0"]
32-
exclude:
33-
- django-version: "4.2"
34-
wagtail-version: "4.0"
35-
- django-version: "4.0"
36-
wagtail-version: "6.0"
37-
- django-version: "4.1"
38-
wagtail-version: "6.0"
29+
python-version: ["3.11", "3.12", "3.13"]
30+
django-version: ["5.1", "5.2"]
31+
wagtail-version: ["6.0", "7.0"]
3932
include:
40-
- python-version: "3.11"
41-
django-version: "4.2"
42-
wagtail-version: "5.0"
33+
- python-version: "3.13"
34+
django-version: "5.2"
35+
wagtail-version: "7.0"
4336
codecov: true
4437
steps:
45-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
4639
- name: Set up Python ${{ matrix.python-version }}
47-
uses: actions/setup-python@v2
40+
uses: actions/setup-python@v3
4841
with:
4942
python-version: ${{ matrix.python-version }}
5043
- name: Install dependencies Django-${{ matrix.django-version }} Wagtail-${{ matrix.wagtail-version }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
default_language_version:
2-
python: python3.11
2+
python: python3.13
33
repos:
44
- repo: https://github.com/pycqa/isort
55
rev: "5.12.0"

0 commit comments

Comments
 (0)