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') }}