Skip to content

Commit e31bdbc

Browse files
authored
Merge pull request #8 from AlexsLemonade/davidsmejia/upgrade-and-fix-yaml
Fix Python deps install
2 parents 7cf5b3a + 8f553c3 commit e31bdbc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/cron.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
issues: write
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Set Up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.10'
2222

2323
- name: Install Dependencies
2424
run: >
25-
python -m pip install --upgrade pip
25+
python -m pip install --upgrade pip &&
2626
pip install -r requirements.txt
2727
2828
- name: Load 1Password secrets

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
TZ: America/New_York
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212

1313
- name: Set Up Python
14-
uses: actions/setup-python@v4
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: '3.10'
1717

1818
- name: Install Dependencies
1919
run: >
20-
python -m pip install --upgrade pip
20+
python -m pip install --upgrade pip &&
2121
pip install -r requirements.txt
2222
2323
- name: Run Tests

0 commit comments

Comments
 (0)