mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-22 16:40:48 +00:00
Flip cache order to mirror how it is done downstream.
This commit is contained in:
parent
b857939b3d
commit
d99fd00bc2
1 changed files with 6 additions and 6 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -14,12 +14,6 @@ jobs:
|
|||
- uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Cache pre-commit hooks
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cache/pre-commit
|
||||
key: "${{ runner.os }}-pre-commit-\
|
||||
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
||||
- name: Cache pip test requirements
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
|
@ -29,6 +23,12 @@ jobs:
|
|||
restore-keys: |
|
||||
${{ runner.os }}-pip-test-
|
||||
${{ runner.os }}-pip-
|
||||
- name: Cache pre-commit hooks
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cache/pre-commit
|
||||
key: "${{ runner.os }}-pre-commit-\
|
||||
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
|
|
Loading…
Reference in a new issue