mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-22 16:40:48 +00:00
Merge pull request #37 from cisagov/add_python_version_to_cache_keys
Incorporate the Python version into keys for pip and pre-commit caches.
This commit is contained in:
commit
b58f7a1546
1 changed files with 7 additions and 2 deletions
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
@ -14,20 +14,25 @@ jobs:
|
||||||
- uses: actions/setup-python@v1
|
- uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
python-version: 3.8
|
python-version: 3.8
|
||||||
|
- name: Store installed Python version
|
||||||
|
run: |
|
||||||
|
echo "::set-env name=PY_VERSION::"\
|
||||||
|
"$(python -c "import platform;print(platform.python_version())")"
|
||||||
- name: Cache pip test requirements
|
- name: Cache pip test requirements
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: "${{ runner.os }}-pip-test-\
|
key: "${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-\
|
||||||
${{ hashFiles('**/requirements-test.txt') }}"
|
${{ hashFiles('**/requirements-test.txt') }}"
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
|
${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-
|
||||||
${{ runner.os }}-pip-test-
|
${{ runner.os }}-pip-test-
|
||||||
${{ runner.os }}-pip-
|
${{ runner.os }}-pip-
|
||||||
- name: Cache pre-commit hooks
|
- name: Cache pre-commit hooks
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pre-commit
|
path: ~/.cache/pre-commit
|
||||||
key: "${{ runner.os }}-pre-commit-\
|
key: "${{ runner.os }}-pre-commit-py${{ env.PY_VERSION }}-\
|
||||||
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue