Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/gnolang/faucet
Browse files Browse the repository at this point in the history
  • Loading branch information
zivkovicmilos committed Nov 27, 2024
2 parents 602e155 + 048dcb8 commit 8d1911a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
go-version: 1.22
cache: true

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

- uses: docker/login-action@v3
Expand Down
1 change: 1 addition & 0 deletions keyring/memory/memory.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ func New(mnemonic string, numAccounts uint64) *Keyring {
seed := bip39.NewSeed(mnemonic, "")

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

Expand Down

0 comments on commit 8d1911a

Please sign in to comment.