Skip to content

Commit

Permalink
v24.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Nov 15, 2024
1 parent c3062fa commit abe9298
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
linting:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**24.11.2 (2024-11-15)**
* Updated Ubuntu images to latest 24.04 from 22.04

**24.11.1 (2024-11-12)**
* Added branch naming convention checker via pre-commit

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.11.1"
__version__ = "24.11.2"
8 changes: 4 additions & 4 deletions ambient_package_update/templates/.github/workflows/ci.yml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
linting:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -25,7 +25,7 @@ jobs:
{% if has_migrations %}
validate_migrations:
name: Validate migrations
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -41,7 +41,7 @@ jobs:

tests:
name: Python {% raw %}${{ matrix.python-version }}{% endraw %}, django {% raw %}${{ matrix.django-version }}{% endraw %}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [{% for python_version in supported_python_versions %}'{{ python_version }}', {% endfor %}]
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

coverage:
name: Coverage
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: tests
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion ambient_package_update/templates/.readthedocs.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2

# Set the OS, Python version and other tools you might need
build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: "3.12"

Expand Down

0 comments on commit abe9298

Please sign in to comment.