summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2022-02-17 18:00:12 -0800
committerDavid Lord <davidism@gmail.com>2022-02-17 18:00:12 -0800
commit0a5cb256647b3da8c8a1179e60753458c2df0087 (patch)
tree88357885e13b01fb3af1468d6a59457a17492d38 /.github
parent49164faca678dd476f1b11a2584fd0e1c6be70b2 (diff)
parente8b350b6662c4b688122567109a848438cf19a66 (diff)
downloadclick-0a5cb256647b3da8c8a1179e60753458c2df0087.tar.gz
Merge branch '8.0.x'
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 bbd9645..90f94bc 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -1,15 +1,5 @@
version: 2
updates:
-- package-ecosystem: "pip"
- directory: "/requirements"
- target-branch: "8.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 e6ef91f..501c819 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -38,19 +38,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: