mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-22 16:40:48 +00:00
Merge pull request #59 from cisagov/improvement/get-python-version-more-simply
Use the python version output by actions/setup-python
This commit is contained in:
commit
3b312c43d4
1 changed files with 7 additions and 8 deletions
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
|
@ -16,26 +16,25 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-python@v2
|
- id: setup-python
|
||||||
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
python-version: 3.9
|
||||||
- name: Store installed Python version
|
|
||||||
run: |
|
|
||||||
echo "PY_VERSION="\
|
|
||||||
"$(python -c "import platform;print(platform.python_version())")" \
|
|
||||||
>> $GITHUB_ENV
|
|
||||||
- name: Cache linting environments
|
- name: Cache linting environments
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
${{ env.PIP_CACHE_DIR }}
|
${{ env.PIP_CACHE_DIR }}
|
||||||
${{ env.PRE_COMMIT_CACHE_DIR }}
|
${{ env.PRE_COMMIT_CACHE_DIR }}
|
||||||
key: "lint-${{ runner.os }}-py${{ env.PY_VERSION }}-\
|
key: |
|
||||||
|
lint-${{ runner.os }}-\
|
||||||
|
py${{ steps.setup-python.outputs.python-version }}-\
|
||||||
${{ hashFiles('**/requirements-test.txt') }}-\
|
${{ hashFiles('**/requirements-test.txt') }}-\
|
||||||
${{ hashFiles('**/requirements.txt') }}-\
|
${{ hashFiles('**/requirements.txt') }}-\
|
||||||
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
lint-${{ runner.os }}-py${{ env.PY_VERSION }}-
|
lint-${{ runner.os }}-\
|
||||||
|
py${{ steps.setup-python.outputs.python-version }}-
|
||||||
lint-${{ runner.os }}-
|
lint-${{ runner.os }}-
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue