Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update deps #21

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.21', '1.22']
go: ['1.22', '1.23']
steps:
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 #v5.0.1
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 #v5.0.2
with:
go-version: ${{ matrix.go }}
- name: Check out source
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b #v4.1.4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
- name: Install Linters
run: "go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.59.1"
run: "go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0"
- name: Build
run: go build ./...
- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ linters:
- bidichk
- bodyclose
- contextcheck
- copyloopvar
- dupword
- durationcheck
- errchkjson
- exportloopref
- gofmt
- goimports
- gosimple
Expand Down
22 changes: 11 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
module github.com/decred/dcrlnlpd

go 1.18
go 1.22

require (
github.com/davecgh/go-spew v1.1.1
github.com/decred/dcrd/chaincfg/chainhash v1.0.4
github.com/decred/dcrd/chaincfg/v3 v3.2.1
github.com/decred/dcrd/dcrutil/v4 v4.0.2
github.com/decred/dcrd/wire v1.7.0
github.com/decred/dcrlnd v0.7.3
github.com/decred/dcrlnd v0.7.4
github.com/decred/slog v1.2.0
github.com/gorilla/mux v1.8.1
github.com/jessevdk/go-flags v1.6.1
github.com/jrick/logrotate v1.0.0
golang.org/x/sync v0.7.0
golang.org/x/sync v0.8.0
google.golang.org/grpc v1.59.0
gopkg.in/macaroon.v2 v2.1.0
)

require (
decred.org/cspp/v2 v2.2.0 // indirect
decred.org/dcrwallet/v4 v4.1.2 // indirect
decred.org/dcrwallet/v4 v4.1.3 // indirect
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/btcsuite/btcwallet/walletdb v1.4.0 // indirect
Expand All @@ -36,7 +36,7 @@ require (
github.com/decred/dcrd/bech32 v1.1.3 // indirect
github.com/decred/dcrd/blockchain/stake/v5 v5.0.1 // indirect
github.com/decred/dcrd/blockchain/standalone/v2 v2.2.1 // indirect
github.com/decred/dcrd/certgen v1.1.3 // indirect
github.com/decred/dcrd/certgen v1.2.0 // indirect
github.com/decred/dcrd/chaincfg v1.5.2 // indirect
github.com/decred/dcrd/connmgr v1.1.1 // indirect
github.com/decred/dcrd/connmgr/v3 v3.1.2 // indirect
Expand All @@ -54,7 +54,7 @@ require (
github.com/decred/dcrd/hdkeychain/v3 v3.1.2 // indirect
github.com/decred/dcrd/lru v1.1.2 // indirect
github.com/decred/dcrd/math/uint256 v1.0.1 // indirect
github.com/decred/dcrd/mixing v0.4.0 // indirect
github.com/decred/dcrd/mixing v0.4.1 // indirect
github.com/decred/dcrd/peer/v3 v3.0.2 // indirect
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.3.0 // indirect
github.com/decred/dcrd/rpcclient/v8 v8.0.1 // indirect
Expand Down Expand Up @@ -88,7 +88,7 @@ require (
github.com/jrick/bitset v1.0.0 // indirect
github.com/jrick/wsrpc/v2 v2.3.5 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
github.com/lib/pq v1.10.4 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/miekg/dns v1.1.53 // indirect
Expand Down Expand Up @@ -127,11 +127,11 @@ require (
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/sys v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405 // indirect
Expand Down
Loading
Loading