We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b8e9516 + 6f1db81 commit f6c337aCopy full SHA for f6c337a
1 file changed
.github/workflows/main.yml
@@ -24,18 +24,18 @@ jobs:
24
runs-on: ubuntu-latest
25
steps:
26
- name: Checkout Repository
27
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
28
29
- name: Setup Python
30
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v6
31
with:
32
python-version: '3.x'
33
+ cache: 'pip'
34
35
- name: Install Dependencies
36
run: |
37
python -m pip install --upgrade pip
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
38
- pip install jupyter-book
+ pip install -r requirements.txt
39
40
- name: Build Jupyter Book HTML
41
0 commit comments