Skip to content

Commit

Permalink
cruft update (GHA node16 warn fix; pytest-apiver from PyPI)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjurbanski-reef committed Jun 21, 2024
1 parent c7f1c1d commit 2cefdd6
Show file tree
Hide file tree
Showing 5 changed files with 15 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": "3e6c8fc564e070428e32a8e90d8e2b0de116eddd",
"commit": "205768e6c430f7b567910b9f72e3b82c8d1f491e",
"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: 6 additions & 4 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ source = "scm"
test = [
"freezegun",
"pytest",
"pytest-apiver @ git+https://github.com/reef-technologies/pytest_apiver.git",
"pytest-apiver",
"pytest-asyncio",
"pytest-django",
"pytest-xdist",
Expand Down

0 comments on commit 2cefdd6

Please sign in to comment.