Skip to content

Commit 8d1911a

Browse files
committed
Merge branch 'main' of https://github.com/gnolang/faucet
2 parents 602e155 + 048dcb8 commit 8d1911a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
go-version: 1.22
2424
cache: true
2525

26-
- uses: sigstore/cosign-installer@v3.5.0
26+
- uses: sigstore/cosign-installer@v3.7.0
2727
- uses: anchore/sbom-action/[email protected]
2828

2929
- uses: docker/login-action@v3

keyring/memory/memory.go

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ func New(mnemonic string, numAccounts uint64) *Keyring {
2222
seed := bip39.NewSeed(mnemonic, "")
2323

2424
for i := uint64(0); i < numAccounts; i++ {
25+
//nolint:gosec // i ranges up to numAccounts which won't overflow uint32
2526
key := generateKeyFromSeed(seed, uint32(i))
2627
address := key.PubKey().Address()
2728

0 commit comments

Comments
 (0)