File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,21 @@ jobs:
11
11
- name : Set up Python
12
12
uses : actions/setup-python@v2
13
13
with :
14
- python-version : 3.9
14
+ python-version : 3.13
15
15
- name : Poetry cache
16
- uses : actions/cache@v2
16
+ uses : actions/cache@v4
17
17
with :
18
18
path : ~/.cache/pypoetry
19
19
key : poetry-cache-${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }}
20
20
- name : Pip cache
21
- uses : actions/cache@v2
21
+ uses : actions/cache@v4
22
22
with :
23
23
path : ~/.cache/pip
24
24
key : pip-cache-${{ runner.os }}-${{ hashFiles('.github/workflows/*.yml') }}
25
25
- name : Install dependencies
26
26
run : |
27
27
python -m pip install poetry
28
- poetry install -E ghp-compiled
28
+ poetry install -E ghp-compiled --no-root
29
29
- name : Compile the courses
30
30
run : |
31
31
poetry run python -m naucse_render compile _compiled \
You can’t perform that action at this time.
0 commit comments