File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 8
8
build :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v3
11
+ - uses : actions/checkout@v4
12
12
- name : Install uv
13
13
uses : astral-sh/setup-uv@v3
14
+ - name : Change directory
15
+ run : cd scrapegraph-py
14
16
- name : Install dependencies
15
17
run : uv sync --frozen
16
18
- name : Analysing the code with pylint
Original file line number Diff line number Diff line change 33
33
id : build_cache
34
34
if : success()
35
35
- name : Cache build
36
- uses : actions/cache@v2
36
+ uses : actions/cache@latest
37
37
with :
38
38
path : scrapegraph-py/dist
39
39
key : ${{ runner.os }}-build-${{ hashFiles('scrapegraph-py/dist/**') }}
67
67
cd ./scrapegraph-py
68
68
uv sync
69
69
- name : Restore build artifacts
70
- uses : actions/cache@v2
70
+ uses : actions/cache@latest
71
71
with :
72
72
path : ./scrapegraph-py/dist
73
73
key : ${{ runner.os }}-build-${{ hashFiles('./scrapegraph-py/dist/**') }}
You can’t perform that action at this time.
0 commit comments