Skip to content

Commit 85d8b9c

Browse files
authored
Merge pull request #1448 from maticnetwork/v2.0.0-candidate
v2.0.0 release
2 parents fd71beb + 4a1c415 commit 85d8b9c

File tree

98 files changed

+2359
-2630
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+2359
-2630
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- uses: actions/setup-go@v5
3131
with:
32-
go-version: 1.22.x
32+
go-version: 1.23.x
3333

3434
- name: Install dependencies on Linux
3535
if: runner.os == 'Linux'
@@ -61,7 +61,7 @@ jobs:
6161
6262
- uses: actions/setup-go@v5
6363
with:
64-
go-version: 1.22.x
64+
go-version: 1.23.x
6565

6666
- name: Install dependencies on Linux
6767
if: runner.os == 'Linux'
@@ -89,7 +89,7 @@ jobs:
8989
9090
- uses: actions/setup-go@v5
9191
with:
92-
go-version: 1.22.x
92+
go-version: 1.23.x
9393

9494
- name: Install dependencies on Linux
9595
if: runner.os == 'Linux'
@@ -140,7 +140,7 @@ jobs:
140140
141141
- uses: actions/setup-go@v5
142142
with:
143-
go-version: 1.22.x
143+
go-version: 1.23.x
144144

145145
- name: Install dependencies on Linux
146146
if: runner.os == 'Linux'
@@ -196,7 +196,7 @@ jobs:
196196
197197
- uses: actions/setup-go@v5
198198
with:
199-
go-version: 1.22.x
199+
go-version: 1.23.x
200200

201201
- name: Checkout matic-cli
202202
uses: actions/checkout@v4
@@ -236,15 +236,9 @@ jobs:
236236
- name: Launch devnet
237237
run: |
238238
cd matic-cli/devnet
239-
bash docker-ganache-start.sh
240-
bash docker-heimdall-start-all.sh
241-
bash docker-bor-setup.sh
242-
bash docker-bor-start-all.sh
239+
bash ../docker_devnet.sh
243240
cd -
244241
timeout 2m bash bor/integration-tests/bor_health.sh
245-
cd -
246-
bash ganache-deployment-bor.sh
247-
bash ganache-deployment-sync.sh
248242
249243
- name: Run smoke tests
250244
run: |

.github/workflows/codeql.yml

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

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929

3030
- name: Install Go
3131
uses: actions/setup-go@v5

.github/workflows/govuln.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/govulncheck.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Govuln
2+
on: [ push, pull_request ]
3+
4+
jobs:
5+
govulncheck:
6+
name: Run govulncheck
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/setup-go@v5
10+
with:
11+
go-version: "1.23.6"
12+
check-latest: true
13+
- uses: actions/checkout@v4
14+
- uses: technote-space/get-diff-action@v6
15+
with:
16+
PATTERNS: |
17+
**/*.go
18+
go.mod
19+
go.sum
20+
Makefile
21+
- name: govulncheck
22+
run: make vulncheck
23+
if: "env.GIT_DIFF != ''"

.github/workflows/packager_deb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Go
2525
uses: actions/setup-go@master
2626
with:
27-
go-version: 1.22.1
27+
go-version: 1.23.6
2828
# Variables
2929
- name: Adding TAG to ENV
3030
run: echo "GIT_TAG=`echo $(git describe --tags --abbrev=0)`" >> $GITHUB_ENV
@@ -126,4 +126,4 @@ jobs:
126126
prerelease: true
127127
files: |
128128
packaging/deb/bor**.deb
129-
packaging/deb/bor**.deb.checksum
129+
packaging/deb/bor**.deb.checksum

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020

2121
- name: Set up Go
2222
uses: actions/setup-go@master
2323
with:
24-
go-version: 1.22.x
24+
go-version: 1.23.x
2525

2626
- name: Prepare
2727
id: prepare

0 commit comments

Comments
 (0)