Skip to content

Commit

Permalink
Merge pull request #30 from aakselrod/update-go1.20.3
Browse files Browse the repository at this point in the history
chores: update deps, fix race in itests
  • Loading branch information
aakselrod-nydig authored May 4, 2023
2 parents a0a6bae + 4714395 commit 05fc62c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19.7
go-version: 1.20.3
- uses: actions/checkout@v3
- name: install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
VAULT_IMAGE_NAME: nydig/vault-plugin-lndsigner
GO_VERSION: 1.19.7
GO_VERSION: 1.20.3

jobs:
# This job fetches the latest minor revision for each currently supported vault version.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG gover=1.19.7
ARG gover=1.20.3

# Build a release binary

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG gover=1.19.7
ARG gover=1.20.3

FROM golang:$gover

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ ifeq ($(CPLATFORM), arm64)
CPLATFORM := aarch64
endif

GOVER := 1.19.7
LND := v0.16.0-beta
GOVER := 1.20.3
LND := v0.16.2-beta
BITCOIND := 24.0.1
VAULT := 1.12.2

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2

// If you change this please also update .github/pull_request_template.md and
// docs/INSTALL.md.
go 1.18
go 1.20

retract v0.0.2
1 change: 0 additions & 1 deletion itest/itest_lndharness_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ func (l *lndHarness) Close() {
l.tctx.t.Helper()

_ = l.Lncli("stop")
_ = l.lndSignerCmd.Process.Signal(os.Interrupt)

l.cancel()
}
Expand Down

0 comments on commit 05fc62c

Please sign in to comment.