From c3f7f83e592330871e9aa8ed9d7037e06d1eba08 Mon Sep 17 00:00:00 2001 From: Corey Schaf Date: Wed, 21 Feb 2024 23:21:11 -0500 Subject: [PATCH] v3 (#45) gh actions update --- .github/workflows/python-app.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 300c8d7..de3ad7c 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -16,11 +16,11 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # If you wanted to use multiple Python versions, you'd have specify a matrix in the job and # reference the matrixe python version here. - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v5 with: python-version: 3.9.18 @@ -30,7 +30,7 @@ jobs: # manually if/when you want to upgrade Poetry, or if something goes wrong. This could be # mildly cleaner by using an environment variable, but I don't really care. - name: cache poetry install - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.local key: poetry-1.5.1-0 @@ -55,7 +55,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@v2 + uses: actions/cache@v3 with: path: .venv key: pydeps-${{ hashFiles('**/poetry.lock') }}