summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-03-19 21:50:54 -0500
committerJordan Cook <jordan.cook@pioneer.com>2022-04-01 13:48:25 -0500
commit550fca5c604fa9635b19bb4ba10d444e36b30d05 (patch)
tree9a6882a7765db1e4201614d171bd3814ef39b39b /.github
parent5a9a18c7bd1d14812fe6308992a193d4a1479a1e (diff)
downloadrequests-cache-550fca5c604fa9635b19bb4ba10d444e36b30d05.tar.gz
Update docs, doc dependencies, changelog, and contributors
Also: Restrict redis-py to <4.2, which breaks parameter forwarding on python 3.7 and 3.8
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') }}