Skip to content

Commit 65144f2

Browse files
committed
GitHub+docker: update to Go 1.22.6
1 parent b66e46b commit 65144f2

20 files changed

+170
-225
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
# If you change this value, please change it in the following files as well:
1313
# /Dockerfile
1414
# /dev.Dockerfile
15-
GO_VERSION: 1.22.3
15+
GO_VERSION: 1.22.6
1616

1717
jobs:
1818
########################

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ linters-settings:
3131
- G402 # Look for bad TLS connection settings.
3232
- G306 # Poor file permissions used when writing to a new file.
3333
staticcheck:
34-
go: "1.18"
34+
go: "1.22.6"
3535
checks: ["-SA1019"]
3636

3737
linters:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN apk add --no-cache --update alpine-sdk \
3535
# If you change this value, please also update:
3636
# /dev.Dockerfile
3737
# /.github/workflows/main.yml
38-
FROM golang:1.22.3-alpine as golangbuilder
38+
FROM golang:1.22.6-alpine as golangbuilder
3939

4040
# Instead of checking out from git again, we just copy the whole working
4141
# directory of the previous stage that includes the generated static assets.

autopilotserverrpc/autopilotserver.pb.go

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN cd /go/src/github.com/lightninglabs/lightning-terminal/app \
1313
# If you change this value, please also update:
1414
# /Dockerfile
1515
# /.github/workflows/main.yml
16-
FROM golang:1.22.3-alpine as golangbuilder
16+
FROM golang:1.22.6-alpine as golangbuilder
1717

1818
# Instead of checking out from git again, we just copy the whole working
1919
# directory of the previous stage that includes the generated static assets.

litrpc/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM golang:1.19.4-buster
1+
FROM golang:1.22.6-bookworm
22

33
RUN apt-get update && apt-get install -y \
44
git \
5-
protobuf-compiler='3.6*' \
6-
clang-format='1:7.0*'
5+
protobuf-compiler='3.21.12*' \
6+
clang-format='1:14.0*'
77

88
# We don't want any default values for these variables to make sure they're
99
# explicitly provided by parsing the go.mod file. Otherwise we might forget to

litrpc/firewall.pb.go

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

litrpc/firewall.pb.gw.go

Lines changed: 9 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)