Commit 1514814 1 parent 9ed6663 commit 1514814 Copy full SHA for 1514814
File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
10
10
deploy :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
14
- - uses : actions/setup-python@v4
13
+ - uses : actions/checkout@v4
14
+ - uses : actions/setup-python@v5
15
15
with :
16
16
python-version : 3.9
17
- - uses : actions/cache@v2
17
+ - uses : actions/cache@v4
18
18
with :
19
19
key : ${{ github.ref }}
20
20
path : .cache
Original file line number Diff line number Diff line change 9
9
black :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3
12
+ - uses : actions/checkout@v4
13
13
- uses : psf/black@stable
14
14
with :
15
15
options : " --check --verbose --diff --color"
16
16
17
17
ruff :
18
18
runs-on : ubuntu-latest
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
- uses : jpetrucciani/ruff-check@main
Original file line number Diff line number Diff line change 7
7
black :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v3
10
+ - uses : actions/checkout@v4
11
11
- uses : psf/black@stable
12
12
with :
13
13
options : " --check --verbose --diff --color"
14
14
15
15
ruff :
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
19
19
- uses : jpetrucciani/ruff-check@main
20
20
21
21
# Tests
24
24
runs-on : ubuntu-latest
25
25
timeout-minutes : 10
26
26
steps :
27
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v4
28
28
29
29
- name : Setup running platform stack
30
30
run : docker compose up --build -d
42
42
needs : [black, ruff]
43
43
runs-on : ubuntu-latest
44
44
steps :
45
- - uses : actions/checkout@v3
45
+ - uses : actions/checkout@v4
46
46
47
47
- name : Build Test
48
48
run : docker build -f docker/python/Dockerfile --target base -t dp3_interpreter .
59
59
id-token : write # Mandatory for trusted publishing
60
60
steps :
61
61
- name : Checkout
62
- uses : actions/checkout@v3
62
+ uses : actions/checkout@v4
63
63
with :
64
64
fetch-depth : 0
65
65
- run : python3 -m pip install --upgrade build && python3 -m build
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
timeout-minutes : 10
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
15
15
- name : Setup running platform stack
16
16
run : docker compose up --build -d
33
33
unit-tests :
34
34
runs-on : ubuntu-latest
35
35
steps :
36
- - uses : actions/checkout@v3
36
+ - uses : actions/checkout@v4
37
37
38
38
- name : Build Test
39
39
run : docker build -f docker/python/Dockerfile --target base -t dp3_interpreter .
You can’t perform that action at this time.
0 commit comments