Skip to content

Commit 66262a3

Browse files
committed
v3.1.2
1 parent bdcb26a commit 66262a3

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
TOXENV: django${{ matrix.django-version }}
4848
run: tox
4949
- name: Upload coverage data
50-
uses: actions/upload-artifact@v3
50+
uses: actions/upload-artifact@v4
5151
with:
52-
name: coverage-data
52+
name: coverage-data-${{ matrix.python-version }}-${{ matrix.django-version }}
5353
path: '.coverage*'
5454

5555
coverage:
@@ -67,9 +67,10 @@ jobs:
6767
run: python -m pip install --upgrade coverage[toml]
6868

6969
- name: Download data
70-
uses: actions/download-artifact@v3
70+
uses: actions/download-artifact@v4
7171
with:
72-
name: coverage-data
72+
pattern: coverage-data*
73+
merge-multiple: true
7374

7475
- name: Combine coverage and fail if it's <100.0%
7576
run: |

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
**3.1.2**
4+
* Updated GitHub actions
5+
36
**3.1.1**
47
* Black-end documentation code
58

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Add simple dynamic interaction to the otherwise static django admin."""
22

3-
__version__ = "3.1.1"
3+
__version__ = "3.1.2"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dev = [
4949
'mistune<2.0.0',
5050
'flit~=3.9',
5151
'keyring~=25.2',
52-
'ambient-package-update~=24.7.3',
52+
'ambient-package-update~=24.7.6',
5353
'unittest-parametrize~=1.4',
5454
]
5555

0 commit comments

Comments
 (0)