Skip to content

Commit c57f13b

Browse files
Merge branch 'develop' into feat/mainsail/bls2
2 parents 858d9d9 + da69e7f commit c57f13b

File tree

14 files changed

+143
-143
lines changed

14 files changed

+143
-143
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
node-version: [16.x]
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Cache node modules
25-
uses: actions/cache@v1
25+
uses: actions/cache@v4
2626
with:
2727
path: node_modules
2828
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 2
2929

.github/workflows/devnet-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
with:
1717
ref: develop
1818
- name: Cache node modules
19-
uses: actions/cache@v1
19+
uses: actions/cache@v4
2020
with:
2121
path: node_modules
2222
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}

.github/workflows/e2e.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
node-version: [16.x]
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Cache node modules
25-
uses: actions/cache@v1
25+
uses: actions/cache@v4
2626
with:
2727
path: node_modules
2828
key: ${{ runner.os }}-e2e-${{ hashFiles('**/yarn.lock') }}
@@ -34,21 +34,21 @@ jobs:
3434
- name: Install and build packages
3535
run: yarn setup
3636
- name: Docker compose up
37-
run: cd __tests__/e2e/lib/config && docker-compose up -d
37+
run: cd __tests__/e2e/lib/config && docker compose up -d
3838
- name: Let the network run during 5min
3939
run: sleep 300
4040
- name: Show logs - node0
4141
if: always()
42-
run: docker logs config_core0_1
42+
run: docker logs config-core0-1
4343
- name: Show logs - node1
4444
if: always()
45-
run: docker logs config_core1_1
45+
run: docker logs config-core1-1
4646
- name: Show logs - node2
4747
if: always()
48-
run: docker logs config_core2_1
48+
run: docker logs config-core2-1
4949
- name: Show logs - node3
5050
if: always()
51-
run: docker logs config_core3_1
51+
run: docker logs config-core3-1
5252
- name: Show logs - node4
5353
if: always()
54-
run: docker logs config_core4_1
54+
run: docker logs config-core4-1

0 commit comments

Comments
 (0)