mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-22 16:40:48 +00:00
Update actions/cache to v2
Switch the workflow to use cachev2. This puts us up to date and allows us to consolidate into one cache item.
This commit is contained in:
parent
3634093132
commit
d6fe79dce3
1 changed files with 10 additions and 14 deletions
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
|
@ -23,22 +23,18 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo "::set-env name=PY_VERSION::"\
|
echo "::set-env name=PY_VERSION::"\
|
||||||
"$(python -c "import platform;print(platform.python_version())")"
|
"$(python -c "import platform;print(platform.python_version())")"
|
||||||
- name: Cache pip test requirements
|
- name: Cache linting environments
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: ${{ env.PIP_CACHE_DIR }}
|
path: |
|
||||||
key: "${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-\
|
${{ env.PIP_CACHE_DIR }}
|
||||||
${{ hashFiles('**/requirements-test.txt') }}"
|
${{ env.PRE_COMMIT_CACHE_DIR }}
|
||||||
restore-keys: |
|
key: "${{ runner.os }}-lint-py${{ env.PY_VERSION }}-\
|
||||||
${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-
|
${{ hashFiles('**/requirements-test.txt') }}-\
|
||||||
${{ runner.os }}-pip-test-
|
|
||||||
${{ runner.os }}-pip-
|
|
||||||
- name: Cache pre-commit hooks
|
|
||||||
uses: actions/cache@v1
|
|
||||||
with:
|
|
||||||
path: ${{ env.PRE_COMMIT_CACHE_DIR }}
|
|
||||||
key: "${{ runner.os }}-pre-commit-py${{ env.PY_VERSION }}-\
|
|
||||||
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-lint-py${{ env.PY_VERSION }}-
|
||||||
|
${{ runner.os }}-lint-
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
|
Loading…
Reference in a new issue