From 2b528f1ec420be03f7f5dde0807ff87d4261b46e Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 1 May 2024 11:51:15 -0700 Subject: [PATCH] chore: fix github actions cache warnings I'd used an older github actions of mine as a basis for the cache blocks, and they referenced an out-of-date cache version. contributes to #147 --- .github/workflows/python-app.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index fc1419d0..aa6ed1cc 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -45,14 +45,14 @@ jobs: python-version: ${{ matrix.py }} - name: Cache python packages - uses: actions/cache@v3 + uses: actions/cache@v4.0.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements*.txt') }} restore-keys: ${{ runner.os }}-pip- - name: Cache tox results - uses: actions/cache@v3 + uses: actions/cache@v4.0.2 with: path: .tox key: ${{ runner.os }}-${{ matrix.py }}-tox-${{ hashFiles('tox.ini') }}-${{ hashFiles('requirements*.txt') }}