Skip to content

Commit

Permalink
Merge pull request #12 from City-Bureau/fix-failed-cron-job
Browse files Browse the repository at this point in the history
Fix failed cron + archive jobs by ensuring `pip` up-to-date
  • Loading branch information
lamle-ea authored Jan 27, 2025
2 parents d71d196 + 42b5a27 commit 2490e8d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/archive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Pipenv
run: pip install --user pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Cache Python dependencies
uses: actions/cache@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install Pipenv
run: pip install --user pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Cache Python dependencies
uses: actions/cache@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Pipenv
run: pip install --user pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Cache Python dependencies
uses: actions/cache@v4
Expand Down

0 comments on commit 2490e8d

Please sign in to comment.