Skip to content

Commit

Permalink
Merge pull request #30 from sabotack/update-actions
Browse files Browse the repository at this point in the history
update action versions to use nodejs 20
  • Loading branch information
ViktorPlatz authored May 8, 2024
2 parents 86def80 + 6df64a5 commit 33e1738
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
uses: actions/checkout@v4

- name: Setup Python 3.12
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"

# Cache the installation of Poetry itself, e.g. the next step. This prevents the workflow
# from installing Poetry every time, which can be slow.
- name: cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-1.8.2
Expand All @@ -46,7 +46,7 @@ jobs:
# them in the cache key. I'm not, so it can be simple and just depend on the poetry.lock.
- name: cache deps
id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}
Expand Down

0 comments on commit 33e1738

Please sign in to comment.