Skip to content

Commit

Permalink
Fix github action failing due to issue in pipenv.
Browse files Browse the repository at this point in the history
See: pypa/pipenv#4831
Change-Id: Ic858d880df437aa76daa083233a2ce466ec69058
  • Loading branch information
schweikert committed Nov 7, 2021
1 parent c5b9626 commit b011a89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-analysis.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
terraform_version: 1.0.6

- name: Install pipenv
run: python -m pip install --upgrade pipenv wheel
run: python -m pip install --upgrade pipenv==2021.5.29 wheel

- name: Restore pipenv cache
id: cache-pipenv
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Expand Up @@ -2,8 +2,6 @@ name: Test
on:
pull_request:
push:
branches:
- main
env:
PIPENV_VENV_IN_PROJECT: enabled
jobs:
Expand All @@ -21,7 +19,7 @@ jobs:
python-version: 3.8

- name: Install pipenv
run: python -m pip install --upgrade pipenv wheel
run: python -m pip install --upgrade pipenv==2021.5.29 wheel

- name: Restore pipenv cache
id: cache-pipenv
Expand Down

0 comments on commit b011a89

Please sign in to comment.