Skip to content

Commit a100a1d

Browse files
committed
Update GitHub Actions to use latest checkout and setup-python versions
1 parent 4a514ab commit a100a1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-python@v4
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-python@v5
1313
with:
1414
python-version: '3.10'
1515
cache: "pip"
@@ -23,7 +23,7 @@ jobs:
2323
# install torch and torchvision for docs
2424
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
2525
nbdev_install_quarto
26-
test -f setup.py && pip install -e ".[dev]"
26+
test -f setup.py && pip install -e ".[dev]" -U
2727
- name: Build docs
2828
shell: bash
2929
run: |

0 commit comments

Comments
 (0)