8000 Remove pipenv cache from ECR workflows · MITLibraries/.github@cf07f83 · GitHub
[go: up one dir, main page]

Skip to content

Commit cf07f83

Browse files
committed
10000
Remove pipenv cache from ECR workflows
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
1 parent 0eb409b commit cf07f83

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

.github/workflows/ecr-shared-deploy-dev.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ jobs:
8282
uses: actions/setup-python@v4
8383
with:
8484
architecture: x64
85-
cache: 'pipenv'
8685

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

.github/workflows/ecr-shared-deploy-stage.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ jobs:
6363
uses: actions/setup-python@v4
6464
with:
6565
architecture: x64
66-
cache: 'pipenv'
6766

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

0 commit comments

Comments
 (0)
0