Skip to content

Commit

Permalink
v24.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Jul 16, 2024
1 parent 4194308 commit 9d877d8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**24.7.4 (2024-07-16)**
* Updated GitHub actions for coverage jobs

**24.7.3 (2024-07-15)**
* Removed Pydocstyle linting rules

Expand Down
2 changes: 1 addition & 1 deletion ambient_package_update/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Ambient package update tool for clean and swift maintenance"""

__version__ = "24.7.3"
__version__ = "24.7.4"
6 changes: 3 additions & 3 deletions ambient_package_update/templates/.github/workflows/ci.yml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ jobs:
TOXENV: django${% raw %}{{ matrix.django-version }}{% endraw %}
run: tox
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
path: '.coverage*'
path: '.coverage${{ matrix.python-version }}-${{ matrix.django-version }}*'

coverage:
name: Coverage
Expand All @@ -82,7 +82,7 @@ jobs:
run: python -m pip install --upgrade coverage[toml]

- name: Download data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data

Expand Down

0 comments on commit 9d877d8

Please sign in to comment.