diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7a5038455b..2dc0ad163b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,7 @@ env: # /dev.Dockerfile # /make/builder.Dockerfile # /.github/workflows/release.yml - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.5 jobs: ######################## diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index af78e5d64c..702734cf8f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ env: # /dev.Dockerfile # /make/builder.Dockerfile # /.github/workflows/main.yml - GO_VERSION: 1.22.3 + GO_VERSION: 1.22.5 jobs: main: diff --git a/Dockerfile b/Dockerfile index d6e8a82c6a..683eff81a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ # If you change this value, please change it in the following files as well: -# /.travis.yml # /dev.Dockerfile # /make/builder.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.22.3-alpine as builder +FROM golang:1.22.5-alpine as builder # Force Go to use the cgo based DNS resolver. This is required to ensure DNS # queries required to connect to linked containers succeed. diff --git a/dev.Dockerfile b/dev.Dockerfile index 624c1bc3a7..c0d4572bb4 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,10 +1,9 @@ # If you change this value, please change it in the following files as well: -# /.travis.yml # /Dockerfile # /make/builder.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.22.3-alpine as builder +FROM golang:1.22.5-alpine as builder LABEL maintainer="Olaoluwa Osuntokun " diff --git a/lnrpc/README.md b/lnrpc/README.md index c4705d629a..b504525f11 100644 --- a/lnrpc/README.md +++ b/lnrpc/README.md @@ -1,7 +1,6 @@ lnrpc ===== -[![Build Status](http://img.shields.io/travis/lightningnetwork/lnd.svg)](https://travis-ci.org/lightningnetwork/lnd) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/lightningnetwork/lnd/blob/master/LICENSE) [![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/lightningnetwork/lnd/lnrpc) diff --git a/make/builder.Dockerfile b/make/builder.Dockerfile index 66946e0a44..db227983a1 100644 --- a/make/builder.Dockerfile +++ b/make/builder.Dockerfile @@ -1,10 +1,9 @@ # If you change this value, please change it in the following files as well: -# /.travis.yml # /Dockerfile # /dev.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.22.3-bookworm +FROM golang:1.22.5-bookworm MAINTAINER Olaoluwa Osuntokun