Skip to content

Commit

Permalink
cruft update (GHA node16 warning fix, lint fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjurbanski-reef committed Jun 21, 2024
1 parent bf7ddf7 commit 2584d73
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/reef-technologies/cookiecutter-rt-pkg",
"commit": "7390ecadb2c65075b6c6c9216c894cc6c4533b3e",
"commit": "93b8dabfc11ca0f56b94e2e0023e9eca6a8a574f",
"checkout": null,
"context": {
"cookiecutter": {
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ env.PYTHON_DEFAULT_VERSION }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
cache: "pip"
cache-dependency-path: 'pdm.lock'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pdm
key: ${{ env.PYTHON_DEFAULT_VERSION }}-pdm-${{ hashFiles('pdm.lock') }}
Expand All @@ -41,16 +41,16 @@ jobs:
python-version: ["3.9", "3.11", "3.12"]
django-version: ["3.2", "4.2"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'pdm.lock'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pdm
key: ${{ matrix.python-version }}-pdm-${{ hashFiles('pdm.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Create GitHub release
id: create-release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
name: ${{ steps.get-version.outputs.version }}
body: ${{ steps.read-changelog.outputs.changes }}
Expand Down
10 changes: 5 additions & 5 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ def version(value):
message = f"release {tag}"

session.log(
f'CHANGELOG updated, please review changes, and execute when ready:\n'
f' git commit -m {message!r}\n'
f' git push origin {current_branch}\n'
f' git tag {tag}\n'
f' git push origin {tag}\n'
f"CHANGELOG updated, please review changes, and execute when ready:\n"
f" git commit -m {message!r}\n"
f" git push origin {current_branch}\n"
f" git tag {tag}\n"
f" git push origin {tag}\n"
)

0 comments on commit 2584d73

Please sign in to comment.