Skip to content

Commit 9718aab

Browse files
committed
chore: merge v11
2 parents ffaa169 + 0640aa6 commit 9718aab

6 files changed

Lines changed: 738 additions & 11 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Check Licenses
2+
on:
3+
pull_request:
4+
5+
jobs:
6+
check-license:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout Repository
10+
uses: actions/checkout@v4
11+
- name: Install Go
12+
uses: actions/setup-go@v5
13+
with:
14+
go-version-file: 'go.mod'
15+
- name: Install go-license
16+
run: go install github.com/palantir/go-license@latest
17+
- name: Check License
18+
run: make check-license

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ FILES := $(shell find . -name "*.go" -not -name "*.pb.go")
6969
license:
7070
@go-license --config .github/license.yml $(FILES)
7171

72+
check-license:
73+
@go-license --config .github/license.yml $(FILES) --verify
74+
7275
format:
7376
@echo "🤖 Running formatter..."
7477
@go run $(gofumpt_cmd) -l -w .

e2e/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
cosmossdk.io/x/upgrade v0.1.4
88
github.com/circlefin/noble-cctp v0.0.0-20241031192117-4285c94ec194
99
github.com/circlefin/noble-fiattokenfactory v0.0.0-20250123235012-5f9bd9dd2c5b
10-
github.com/cosmos/cosmos-sdk v0.50.13
10+
github.com/cosmos/cosmos-sdk v0.50.14
1111
github.com/cosmos/gogoproto v1.7.0
1212
github.com/cosmos/ibc-go/v8 v8.7.0
1313
github.com/docker/docker v25.0.6+incompatible
@@ -143,7 +143,7 @@ require (
143143
github.com/gtank/merlin v0.1.1 // indirect
144144
github.com/gtank/ristretto255 v0.1.2 // indirect
145145
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
146-
github.com/hashicorp/go-getter v1.7.5 // indirect
146+
github.com/hashicorp/go-getter v1.7.9 // indirect
147147
github.com/hashicorp/go-hclog v1.5.0 // indirect
148148
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
149149
github.com/hashicorp/go-metrics v0.5.3 // indirect

0 commit comments

Comments
 (0)