summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2022-02-16 08:59:01 -0800
committerDavid Lord <davidism@gmail.com>2022-02-16 08:59:01 -0800
commit254f5c7320c183bf725e692082e34420a1f3e137 (patch)
treea350e40ed0a792fe52aef69616d932467694c9fb /.github
parent68522ecfd1a836df89673deb094a95af2d37fe7e (diff)
parent4a0745cdb31fdd74f079d697974fa88bcf52a7ef (diff)
downloadmarkupsafe-254f5c7320c183bf725e692082e34420a1f3e137.tar.gz
Merge branch '2.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 b0251c7..90f94bc 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 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: