Skip to content

Commit

Permalink
Remove pipenv cache from ECR workflows
Browse files Browse the repository at this point in the history
Why these changes are being introduced:
There is a known bug in `actions/setup-python` related to caching:
actions/setup-python#436
that we experienced with the first auto-deploy runs for the
alma-creditcardslips application. As a quick fix, we simply remove
the cache option for pipenv from the step and everything runs smoothly.

How this addresses that need:
* Remove `cache: 'pipenv'` from the actions/setup-python for both the
dev and stage ecr-shared-deploy- workflows.

Relevant ticket(s):
* https://mitlibraries.atlassian.net/browse/IN-735
  • Loading branch information
cabutlermit committed Feb 17, 2023
1 parent 0eb409b commit cf07f83
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ecr-shared-deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ jobs:
uses: actions/setup-python@v4
with:
architecture: x64
cache: 'pipenv'

- name: Get Ruby
# Run the Ruby setup setup only when there is a .ruby-version file in the
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ecr-shared-deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ jobs:
uses: actions/setup-python@v4
with:
architecture: x64
cache: 'pipenv'

- name: Get Ruby
# Run the Ruby setup setup only when there is a .ruby-version file in the
Expand Down

0 comments on commit cf07f83

Please sign in to comment.