Skip to content

Commit f6c337a

Browse files
authored
Merge pull request #150 from UA-Libraries-Research-Data-Services/update-r-recipes
Update GitHub Actions workflow
2 parents b8e9516 + 6f1db81 commit f6c337a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828

2929
- name: Setup Python
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: '3.x'
33+
cache: 'pip'
3334

3435
- name: Install Dependencies
3536
run: |
3637
python -m pip install --upgrade pip
37-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
38-
pip install jupyter-book
38+
pip install -r requirements.txt
3939
4040
- name: Build Jupyter Book HTML
4141
run: |

0 commit comments

Comments
 (0)