File tree Expand file tree Collapse file tree 11 files changed +47
-44
lines changed Expand file tree Collapse file tree 11 files changed +47
-44
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v3
17
17
18
18
- name : Login to GitHub Container Registry
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : ghcr.io
22
22
username : ${{ github.repository_owner }}
28
28
29
29
# ibet for Fin (General)
30
30
- name : Build and Push (ibet for Fin / General)
31
- uses : docker/build-push-action@v2
31
+ uses : docker/build-push-action@v5
32
32
with :
33
33
context : ./ibet-for-fin-network/general
34
34
file : ./ibet-for-fin-network/general/Dockerfile
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v3
17
17
18
18
- name : Login to GitHub Container Registry
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : ghcr.io
22
22
username : ${{ github.repository_owner }}
28
28
29
29
# ibet for Fin (Validator)
30
30
- name : Build and Push (ibet for Fin / Validator)
31
- uses : docker/build-push-action@v2
31
+ uses : docker/build-push-action@v5
32
32
with :
33
33
context : ./ibet-for-fin-network/validator
34
34
file : ./ibet-for-fin-network/validator/Dockerfile
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v3
17
17
18
18
- name : Login to GitHub Container Registry
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : ghcr.io
22
22
username : ${{ github.repository_owner }}
28
28
29
29
# ibet (General)
30
30
- name : Build and Push (ibet / General)
31
- uses : docker/build-push-action@v2
31
+ uses : docker/build-push-action@v5
32
32
with :
33
33
context : ./ibet-network/general
34
34
file : ./ibet-network/general/Dockerfile
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v3
17
17
18
18
- name : Login to GitHub Container Registry
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : ghcr.io
22
22
username : ${{ github.repository_owner }}
28
28
29
29
# ibet (Validator)
30
30
- name : Build and Push (ibet / Validator)
31
- uses : docker/build-push-action@v2
31
+ uses : docker/build-push-action@v5
32
32
with :
33
33
context : ./ibet-network/validator
34
34
file : ./ibet-network/validator/Dockerfile
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v3
17
17
18
18
- name : Login to GitHub Container Registry
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : ghcr.io
22
22
username : ${{ github.repository_owner }}
28
28
29
29
# local network (General)
30
30
- name : Build and Push (local network / General)
31
- uses : docker/build-push-action@v2
31
+ uses : docker/build-push-action@v5
32
32
with :
33
33
context : ./local-network/general
34
34
file : ./local-network/general/Dockerfile
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v3
17
17
18
18
- name : Login to GitHub Container Registry
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : ghcr.io
22
22
username : ${{ github.repository_owner }}
28
28
29
29
# local network (Validator)
30
30
- name : Build and Push (local network / Validator)
31
- uses : docker/build-push-action@v2
31
+ uses : docker/build-push-action@v5
32
32
with :
33
33
context : ./local-network/validator
34
34
file : ./local-network/validator/Dockerfile
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v3
17
17
18
18
- name : Login to GitHub Container Registry
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : ghcr.io
22
22
username : ${{ github.repository_owner }}
28
28
29
29
# ibet testnet (General)
30
30
- name : Build and Push (ibet testnet / General)
31
- uses : docker/build-push-action@v2
31
+ uses : docker/build-push-action@v5
32
32
with :
33
33
context : ./test-network/general
34
34
file : ./test-network/general/Dockerfile
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v3
17
17
18
18
- name : Login to GitHub Container Registry
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : ghcr.io
22
22
username : ${{ github.repository_owner }}
28
28
29
29
# ibet testnet (Validator)
30
30
- name : Build and Push (ibet testnet / Validator)
31
- uses : docker/build-push-action@v2
31
+ uses : docker/build-push-action@v5
32
32
with :
33
33
context : ./test-network/validator
34
34
file : ./test-network/validator/Dockerfile
Original file line number Diff line number Diff line change 38
38
39
39
steps :
40
40
- name : Checkout repository
41
- uses : actions/checkout@v2
41
+ uses : actions/checkout@v4
42
42
43
43
# Initializes the CodeQL tools for scanning.
44
44
- name : Initialize CodeQL
Original file line number Diff line number Diff line change 1
- .PHONY : format isort black test
1
+ .PHONY : install update format isort black test
2
2
3
3
install :
4
4
cd tests && poetry install --no-root --sync
5
5
6
+ update :
7
+ cd tests && poetry update
8
+
6
9
format : isort black
7
10
8
11
isort :
You can’t perform that action at this time.
0 commit comments