build: bump Go version to v1.21.0, lnd version to v0.17.0 rc1 (#7914)

* build: update Go version to 1.21.0

* build: bump version to v0.17.0 rc1
This commit is contained in:
Olaoluwa Osuntokun 2023-08-23 17:33:11 -07:00 committed by GitHub
parent c07ec0462c
commit dde1495e1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View File

@ -29,7 +29,7 @@ env:
# /dev.Dockerfile # /dev.Dockerfile
# /make/builder.Dockerfile # /make/builder.Dockerfile
# /.github/workflows/release.yml # /.github/workflows/release.yml
GO_VERSION: 1.20.3 GO_VERSION: 1.21.0
jobs: jobs:
######################## ########################

View File

@ -16,7 +16,7 @@ env:
# /dev.Dockerfile # /dev.Dockerfile
# /make/builder.Dockerfile # /make/builder.Dockerfile
# /.github/workflows/main.yml # /.github/workflows/main.yml
GO_VERSION: 1.20.3 GO_VERSION: 1.21.0
jobs: jobs:
main: main:

View File

@ -21,7 +21,7 @@ go:
# /make/builder.Dockerfile # /make/builder.Dockerfile
# /.github/workflows/main.yml # /.github/workflows/main.yml
# /.github/workflows/release.yml # /.github/workflows/release.yml
- "1.20.3" - "1.21.0"
env: env:
global: global:

View File

@ -40,14 +40,14 @@ const (
AppMajor uint = 0 AppMajor uint = 0
// AppMinor defines the minor version of this binary. // AppMinor defines the minor version of this binary.
AppMinor uint = 16 AppMinor uint = 17
// AppPatch defines the application patch for this binary. // AppPatch defines the application patch for this binary.
AppPatch uint = 99 AppPatch uint = 0
// AppPreRelease MUST only contain characters from semanticAlphabet // AppPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec. // per the semantic versioning spec.
AppPreRelease = "beta" AppPreRelease = "beta.rc1"
) )
func init() { func init() {

View File

@ -4,7 +4,7 @@
# /make/builder.Dockerfile # /make/builder.Dockerfile
# /.github/workflows/main.yml # /.github/workflows/main.yml
# /.github/workflows/release.yml # /.github/workflows/release.yml
FROM golang:1.20.3-alpine as builder FROM golang:1.21.0-alpine as builder
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>" LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"

View File

@ -4,7 +4,7 @@
# /dev.Dockerfile # /dev.Dockerfile
# /.github/workflows/main.yml # /.github/workflows/main.yml
# /.github/workflows/release.yml # /.github/workflows/release.yml
FROM golang:1.20.3-buster FROM golang:1.21.0-buster
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering> MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>