summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-04-06 17:41:42 -0500
committerJordan Cook <jordan.cook@pioneer.com>2022-04-06 18:19:37 -0500
commit1d9cb18fe5d346db08a4acf6ac530eb6772e643a (patch)
tree10bcb5fac3e1eea0e19e56659018b49a83931926 /.github
parent47ef59ecc423c5673172b908c315c82c344a2857 (diff)
downloadrequests-cache-1d9cb18fe5d346db08a4acf6ac530eb6772e643a.tar.gz
Update tests, changelog, and contributors
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml4
-rw-r--r--.github/workflows/deploy.yml4
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b16002c..c682038 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -13,7 +13,7 @@ env:
jobs:
# Run tests for each supported python version
test:
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
@@ -68,7 +68,7 @@ jobs:
# Run code analysis checks via pre-commit hooks
analyze:
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 8bc8b67..4d53618 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -23,7 +23,7 @@ env:
jobs:
# Run tests for all supported requests versions
test:
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
@@ -78,7 +78,7 @@ jobs:
# Deploy stable builds on tags only, and pre-release builds from manual trigger ("workflow_dispatch")
release:
needs: [test]
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3