summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2022-02-07 10:59:59 -0800
committerGitHub <noreply@github.com>2022-02-07 10:59:59 -0800
commit0bee9aeb31212372305ee74d73c07c272393d3f2 (patch)
tree89117c4bc0df264ec38ce9d3248d4976fef4be25 /.github
parent6093ea9872bcdcb1f1eb2576df59ecee1158a96e (diff)
parent98c058a1cac266a81547a415abb95a5fceb0c5df (diff)
downloadwerkzeug-0bee9aeb31212372305ee74d73c07c272393d3f2.tar.gz
Merge pull request #2334 from pallets/update-requirements
update requirements, stop using dependabot
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml10
-rw-r--r--.github/workflows/tests.yaml10
2 files changed, 2 insertions, 18 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index b0251c75..90f94bc3 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -1,15 +1,5 @@
version: 2
updates:
-- package-ecosystem: "pip"
- directory: "/requirements"
- target-branch: "2.0.x"
- versioning-strategy: "lockfile-only"
- schedule:
- interval: "monthly"
- day: "monday"
- time: "16:00"
- timezone: "UTC"
- open-pull-requests-limit: 99
- package-ecosystem: "github-actions"
directory: "/"
schedule:
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 4e48dd9c..680092ac 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -39,19 +39,13 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
+ cache: 'pip'
+ cache-dependency-path: 'requirements/*.txt'
- name: update pip
run: |
pip install -U wheel
pip install -U setuptools
python -m pip install -U pip
- - name: get pip cache dir
- id: pip-cache
- run: echo "::set-output name=dir::$(pip cache dir)"
- - name: cache pip
- uses: actions/cache@v2
- with:
- path: ${{ steps.pip-cache.outputs.dir }}
- key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}|${{ hashFiles('requirements/*.txt') }}
- name: cache mypy
uses: actions/cache@v2
with: