From 6df64a580125ee271986431a041be7d0a8dfe4d7 Mon Sep 17 00:00:00 2001 From: sabotack Date: Tue, 7 May 2024 09:35:37 +0200 Subject: [PATCH] update action versions to use nodejs 20 --- .github/workflows/black.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index 484e337..a070c10 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -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 @@ -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') }}