Skip to content

Commit

Permalink
Merge pull request #8 from AlexsLemonade/davidsmejia/upgrade-and-fix-…
Browse files Browse the repository at this point in the history
…yaml

Fix Python deps install
  • Loading branch information
davidsmejia authored Jul 16, 2024
2 parents 7cf5b3a + 8f553c3 commit e31bdbc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
issues: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set Up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install Dependencies
run: >
python -m pip install --upgrade pip
python -m pip install --upgrade pip &&
pip install -r requirements.txt
- name: Load 1Password secrets
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
TZ: America/New_York
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set Up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install Dependencies
run: >
python -m pip install --upgrade pip
python -m pip install --upgrade pip &&
pip install -r requirements.txt
- name: Run Tests
Expand Down

0 comments on commit e31bdbc

Please sign in to comment.