diff --git a/.github/contributors.json b/.github/contributors.json
index 7920e8caf..b97140005 100644
--- a/.github/contributors.json
+++ b/.github/contributors.json
@@ -1362,5 +1362,10 @@
"name": "duffn",
"github_login": "duffn",
"twitter_username": ""
+ },
+ {
+ "name": "Delphine LEMIRE",
+ "github_login": "DelphineLemire",
+ "twitter_username": ""
}
]
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2b88bc869..23604fd77 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
+## 2023.02.17
+
+### Changed
+- Update version of github actions on the template project ([#4167](https://github.com/cookiecutter/cookiecutter-django/pull/4167))
+
## 2023.02.09
### Changed
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 85b1ae88f..0670ff448 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -642,6 +642,13 @@ Listed in alphabetical order.
jangeador |
+
+ Delphine LEMIRE |
+
+ DelphineLemire
+ |
+ |
+
Demetris Stavrou |
diff --git a/setup.py b/setup.py
index 858d20691..c7566ba70 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ except ImportError:
from distutils.core import setup
# We use calendar versioning
-version = "2023.02.09"
+version = "2023.02.17"
with open("README.rst") as readme_file:
long_description = readme_file.read()
diff --git a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml
index b1a861bdc..4d8300c42 100644
--- a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml
+++ b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml
@@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
@@ -39,7 +39,7 @@ jobs:
# Consider using pre-commit.ci for open source project
{%- endif %}
- name: Run pre-commit
- uses: pre-commit/action@v2.0.3
+ uses: pre-commit/action@v3.0.0
# With no caching at all the entire ci process takes 4m 30s to complete!
pytest:
@@ -88,7 +88,7 @@ jobs:
{%- else %}
- name: Set up Python
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
|