Skip to content

Commit 2e22dc3

Browse files
authored
Merge branch 'master' into fix/issue-302
2 parents 32b5b2b + 9f71a02 commit 2e22dc3

16 files changed

+23
-23
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313

1414
- run: python -Im pip install --user ruff
1515

.github/workflows/publish-to-live-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
permissions:
1616
id-token: write
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Set up Python 3.10
2020
uses: actions/setup-python@v6
2121
with:

.github/workflows/publish-to-test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
permissions:
1616
id-token: write
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Set up Python 3.10
2020
uses: actions/setup-python@v6
2121
with:

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- '3.13'
2121

2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424

2525
- name: Set up Python ${{ matrix.python-version }}
2626
uses: actions/setup-python@v6
@@ -38,7 +38,7 @@ jobs:
3838
run: tox --py current
3939

4040
- name: Upload coverage data
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v5
4242
with:
4343
name: coverage-data-${{ matrix.python-version }}
4444
include-hidden-files: true
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
needs: unit-tests
5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353

5454
- uses: actions/setup-python@v6
5555
with:
@@ -59,7 +59,7 @@ jobs:
5959
run: python -m pip install --upgrade coverage[toml]
6060

6161
- name: Download data
62-
uses: actions/download-artifact@v5
62+
uses: actions/download-artifact@v6
6363
with:
6464
path: ${{ github.workspace }}
6565
pattern: coverage-data-*
@@ -73,7 +73,7 @@ jobs:
7373
7474
- name: Upload HTML report
7575
if: ${{ failure() }}
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v5
7777
with:
7878
name: html-report
7979
path: htmlcov
@@ -93,7 +93,7 @@ jobs:
9393
]
9494

9595
steps:
96-
- uses: actions/checkout@v5
96+
- uses: actions/checkout@v6
9797
- name: Set up Python ${{ matrix.python-version }}
9898

9999
uses: actions/setup-python@v6

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ ci:
99

1010
repos:
1111
- repo: https://github.com/asottile/pyupgrade
12-
rev: v3.20.0
12+
rev: v3.21.2
1313
hooks:
1414
- id: pyupgrade
1515
args: ["--py38-plus"]
1616

1717
- repo: https://github.com/adamchainz/django-upgrade
18-
rev: '1.29.0'
18+
rev: '1.29.1'
1919
hooks:
2020
- id: django-upgrade
2121
args: [--target-version, "3.2"]
2222

2323
- repo: https://github.com/astral-sh/ruff-pre-commit
24-
rev: v0.13.3
24+
rev: v0.14.7
2525
hooks:
2626
- id: ruff
2727
args: [--fix, --exit-non-zero-on-fix]

tests/requirements/py311-dj52-cms50-default.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ coverage[toml]==7.8.0
1414
# via
1515
# -r requirements.in
1616
# pytest-cov
17-
django==5.2.7
17+
django==5.2.8
1818
# via
1919
# django-classy-tags
2020
# django-cms

tests/requirements/py311-dj52-cms50-versioning.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ coverage[toml]==7.8.0
1414
# via
1515
# -r requirements.in
1616
# pytest-cov
17-
django==5.2.7
17+
django==5.2.8
1818
# via
1919
# django-classy-tags
2020
# django-cms

tests/requirements/py312-dj52-cms50-default.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ coverage[toml]==7.8.0
1414
# via
1515
# -r requirements.in
1616
# pytest-cov
17-
django==5.2.7
17+
django==5.2.8
1818
# via
1919
# django-classy-tags
2020
# django-cms

tests/requirements/py312-dj52-cms50-versioning.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ coverage[toml]==7.8.0
1414
# via
1515
# -r requirements.in
1616
# pytest-cov
17-
django==5.2.7
17+
django==5.2.8
1818
# via
1919
# django-classy-tags
2020
# django-cms

0 commit comments

Comments
 (0)