summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJordan Cook <JWCook@users.noreply.github.com>2022-04-01 14:09:39 -0500
committerGitHub <noreply@github.com>2022-04-01 14:09:39 -0500
commitfce732d3e404f06c78563fabb36cd565e2a98eab (patch)
treef6cce21baaeaeed5d5923958cc83e59c27e68fe8 /.github
parentc353174efce828ae4c8fb0021eebc8262c8e5da8 (diff)
parentfaad6dc8f3345cb5a2912ce674274b022d9cc6d6 (diff)
downloadrequests-cache-fce732d3e404f06c78563fabb36cd565e2a98eab.tar.gz
Merge pull request #555 from JWCook/settings-refactor
Refactor cache policy and settings
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/deploy.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 873458b..baaa09c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -49,7 +49,7 @@ jobs:
# Cache packages per python version, and reuse until lockfile changes
- name: Cache python packages
id: cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: .venv
key: venv-${{ matrix.python-version }}-latest-${{ hashFiles('poetry.lock') }}
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index af03819..9c37daf 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -59,7 +59,7 @@ jobs:
# Cache packages per python version, and reuse until lockfile changes
- name: Cache python packages
id: cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ matrix.requests-version }}-${{ hashFiles('poetry.lock') }}