Skip to content

Commit

Permalink
Upgrade CI to use current GitHub Actions
Browse files Browse the repository at this point in the history
Also upgrade environment variable passing for modern format
  • Loading branch information
rajadain committed Dec 18, 2023
1 parent 2784e20 commit 4d8381d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
matrix:
python-version: ["3.8", "3.10", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add support for Django 3.2, 4.2, 5.0 [#33](https://github.com/azavea/django-ecsmanage/pull/33)

### Changed
- Upgrade CI to use newer GitHub Actions for `checkout` and `setup-python` [#33](https://github.com/azavea/django-ecsmanage/pull/33)

### Removed
- Remove support for end-of-life Python 3.6 and 3.7, Django 2.2, 3.0, and 3.1 [#33](https://github.com/azavea/django-ecsmanage/pull/33)

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ python =
3.12: py312

[testenv]
passenv = PYTHONPATH DJANGO_SETTINGS_MODULE
passenv = PYTHONPATH,DJANGO_SETTINGS_MODULE
deps =
django32: Django>=3.2,<3.3
django42: Django>=4.2,<4.3
Expand Down

0 comments on commit 4d8381d

Please sign in to comment.