Skip to content

Commit 3847ce1

Browse files
authored
Merge branch 'master' into pk910/majority-specs
2 parents 52d5b08 + 3af0952 commit 3847ce1

File tree

12 files changed

+2153
-620
lines changed

12 files changed

+2153
-620
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ updates:
1313
ui-package dependencies:
1414
patterns:
1515
- '*'
16+
ignore:
17+
- dependency-name: wagmi
18+
update-types:
19+
- version-update:semver-major
1620
open-pull-requests-limit: 10
1721
package-ecosystem: npm
1822
schedule:

.github/workflows/_shared-build.yaml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
name: Build UI package
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
49+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5050
with:
5151
ref: ${{ inputs.ref }}
5252

5353
# setup node & npm
5454
- name: Set up node
55-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
55+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
5656
with:
5757
node-version: 20.x
5858
- name: Cache node-modules for UI package
@@ -72,7 +72,7 @@ jobs:
7272
7373
# upload artifacts
7474
- name: "Upload artifact: ui-package"
75-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
75+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
7676
with:
7777
path: ./ui-package/dist/*
7878
name: ui-package
@@ -82,15 +82,15 @@ jobs:
8282
needs: [build_ui_package]
8383
runs-on: ubuntu-latest
8484
steps:
85-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
85+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
8686
with:
8787
ref: ${{ inputs.ref }}
8888

8989
# setup global dependencies
9090
- name: Set up go
91-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
91+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
9292
with:
93-
go-version: 1.24.x
93+
go-version: 1.25.x
9494

9595
# setup project dependencies
9696
- name: Get dependencies
@@ -99,7 +99,7 @@ jobs:
9999
100100
# download UI build artifacts
101101
- name: Download UI build artifacts
102-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
102+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
103103
with:
104104
name: ui-package
105105
path: ./ui-package/dist
@@ -113,7 +113,7 @@ jobs:
113113

114114
# upload artifacts
115115
- name: "Upload artifact: explorer_linux_amd64"
116-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
116+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
117117
with:
118118
path: ./bin/*
119119
name: explorer_linux_amd64
@@ -123,15 +123,15 @@ jobs:
123123
needs: [build_ui_package]
124124
runs-on: ubuntu-latest
125125
steps:
126-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
126+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
127127
with:
128128
ref: ${{ inputs.ref }}
129129

130130
# setup global dependencies
131131
- name: Set up go
132-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
132+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
133133
with:
134-
go-version: 1.24.x
134+
go-version: 1.25.x
135135

136136
# setup cross build libs
137137
- name: Get cross build dependencies
@@ -146,7 +146,7 @@ jobs:
146146
147147
# download UI build artifacts
148148
- name: Download UI build artifacts
149-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
149+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
150150
with:
151151
name: ui-package
152152
path: ./ui-package/dist
@@ -160,7 +160,7 @@ jobs:
160160

161161
# upload artifacts
162162
- name: "Upload artifact: explorer_linux_arm64"
163-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
163+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
164164
with:
165165
path: ./bin/*
166166
name: explorer_linux_arm64
@@ -170,15 +170,15 @@ jobs:
170170
needs: [build_ui_package]
171171
runs-on: windows-latest
172172
steps:
173-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
173+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
174174
with:
175175
ref: ${{ inputs.ref }}
176176

177177
# setup global dependencies
178178
- name: Set up go
179-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
179+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
180180
with:
181-
go-version: 1.24.x
181+
go-version: 1.25.x
182182

183183
# setup project dependencies
184184
- name: Get dependencies
@@ -187,7 +187,7 @@ jobs:
187187
188188
# download UI build artifacts
189189
- name: Download UI build artifacts
190-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
190+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
191191
with:
192192
name: ui-package
193193
path: ./ui-package/dist
@@ -201,7 +201,7 @@ jobs:
201201

202202
# upload artifacts
203203
- name: "Upload artifact: explorer_windows_amd64"
204-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
204+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
205205
with:
206206
path: ./bin/*
207207
name: explorer_windows_amd64
@@ -211,15 +211,15 @@ jobs:
211211
needs: [build_ui_package]
212212
runs-on: macos-latest
213213
steps:
214-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
214+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
215215
with:
216216
ref: ${{ inputs.ref }}
217217

218218
# setup global dependencies
219219
- name: Set up go
220-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
220+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
221221
with:
222-
go-version: 1.24.x
222+
go-version: 1.25.x
223223

224224
# setup project dependencies
225225
- name: Get dependencies
@@ -228,7 +228,7 @@ jobs:
228228
229229
# download UI build artifacts
230230
- name: Download UI build artifacts
231-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
231+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
232232
with:
233233
name: ui-package
234234
path: ./ui-package/dist
@@ -242,7 +242,7 @@ jobs:
242242

243243
# upload artifacts
244244
- name: "Upload artifact: explorer_darwin_amd64"
245-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
245+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
246246
with:
247247
path: ./bin/*
248248
name: explorer_darwin_amd64
@@ -252,15 +252,15 @@ jobs:
252252
needs: [build_ui_package]
253253
runs-on: macos-latest
254254
steps:
255-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
255+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
256256
with:
257257
ref: ${{ inputs.ref }}
258258

259259
# setup global dependencies
260260
- name: Set up go
261-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
261+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
262262
with:
263-
go-version: 1.24.x
263+
go-version: 1.25.x
264264

265265
# setup project dependencies
266266
- name: Get dependencies
@@ -269,7 +269,7 @@ jobs:
269269
270270
# download UI build artifacts
271271
- name: Download UI build artifacts
272-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
272+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
273273
with:
274274
name: ui-package
275275
path: ./ui-package/dist
@@ -283,7 +283,7 @@ jobs:
283283

284284
# upload artifacts
285285
- name: "Upload artifact: explorer_darwin_arm64"
286-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
286+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
287287
with:
288288
path: ./bin/*
289289
name: explorer_darwin_arm64
@@ -294,7 +294,7 @@ jobs:
294294
if: ${{ inputs.docker }}
295295
runs-on: ubuntu-latest
296296
steps:
297-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
297+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
298298
with:
299299
ref: ${{ inputs.ref }}
300300

@@ -313,12 +313,12 @@ jobs:
313313

314314
# download build artifacts
315315
- name: Download UI build artifacts
316-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
316+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
317317
with:
318318
name: ui-package
319319
path: ./ui-package/dist
320320
- name: Download build artifacts
321-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
321+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
322322
with:
323323
name: explorer_linux_amd64
324324
path: ./bin
@@ -347,7 +347,7 @@ jobs:
347347
if: ${{ inputs.docker }}
348348
runs-on: ubuntu-latest
349349
steps:
350-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
350+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
351351
with:
352352
ref: ${{ inputs.ref }}
353353
- name: Get build version
@@ -356,7 +356,7 @@ jobs:
356356

357357
# prepare docker
358358
- name: Set up Docker QEMU
359-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
359+
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
360360
- name: Set up Docker Buildx
361361
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
362362
- name: Login to Docker Hub
@@ -367,12 +367,12 @@ jobs:
367367

368368
# download build artifacts
369369
- name: Download UI build artifacts
370-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
370+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
371371
with:
372372
name: ui-package
373373
path: ./ui-package/dist
374374
- name: Download build artifacts
375-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
375+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
376376
with:
377377
name: explorer_linux_arm64
378378
path: ./bin
@@ -401,7 +401,7 @@ jobs:
401401
if: ${{ inputs.docker }}
402402
runs-on: ubuntu-latest
403403
steps:
404-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
404+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
405405
with:
406406
ref: ${{ inputs.ref }}
407407
- name: Get build version
@@ -436,7 +436,7 @@ jobs:
436436
matrix:
437437
tag: ${{ fromJSON(inputs.additional_tags) }}
438438
steps:
439-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
439+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
440440
with:
441441
ref: ${{ inputs.ref }}
442442
- name: Get build version

.github/workflows/_shared-check.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
name: Run code checks
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
12+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1313

1414
# setup global dependencies
1515
- name: Set up go
16-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
16+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
1717
with:
18-
go-version: 1.24.x
18+
go-version: 1.25.x
1919
- name: Set up node
20-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
20+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2121
with:
2222
node-version: 20.x
2323
- name: Cache node-modules for UI package

.github/workflows/build-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
# download build artifacts
5656
- name: "Download build artifacts"
57-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
57+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
5858

5959
# (re)create snapshot binary release
6060
- name: Update snapshot tag & remove previous snapshot release

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
needs: [build_binaries]
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
46+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4747
with:
4848
fetch-depth: 100
4949
ref: ${{ github.sha }}
@@ -75,7 +75,7 @@ jobs:
7575

7676
# download build artifacts
7777
- name: "Download build artifacts"
78-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
78+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
7979

8080
# create draft release
8181
- name: Create latest release

.github/workflows/check-typos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
13+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1414

1515
- name: Check for typos
16-
uses: crate-ci/typos@6d35b835f6f431bbe715c4c1ccd2c7d3264e11fb # v1.37.0
16+
uses: crate-ci/typos@2d0ce569feab1f8752f1dde43cc2f2aa53236e06 # v1.40.0
1717

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY ui-package /app
77
RUN npm run build
88

99
# go build env
10-
FROM golang:1.24.0 AS go-env
10+
FROM golang:1.25.0 AS go-env
1111
COPY go.mod go.sum /src/
1212
WORKDIR /src
1313
RUN go mod download

0 commit comments

Comments
 (0)