Skip to content

Commit

Permalink
Ensure pip up-to-date
Browse files Browse the repository at this point in the history
  • Loading branch information
duongcao-ea committed Jan 27, 2025
1 parent 1c1f1d6 commit 1c0b93e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/archive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
schedule:
- cron: "7 11 * * *"
workflow_dispatch:
push:
branches:
- fix-failed-cron-job

env:
CI: true
Expand All @@ -26,7 +29,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
7 changes: 6 additions & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
schedule:
- cron: "1 6 * * *"
workflow_dispatch:
push:
branches:
- fix-failed-cron-job

env:
CI: true
Expand Down Expand Up @@ -32,7 +35,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 1c0b93e

Please sign in to comment.