File tree Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1919 # go needs absolute directories, using the $HOME variable doesn't work here.
2020 GOPATH : /home/runner/work/go
2121
22- GO_VERSION : ' 1.23.6 '
22+ GO_VERSION : ' 1.23.9 '
2323
2424 LITD_ITEST_BRANCH : ' master'
2525
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ defaults:
1010 shell : bash
1111
1212env :
13- GO_VERSION : 1.23.6
13+ GO_VERSION : 1.23.9
1414
1515jobs :
1616 main :
Original file line number Diff line number Diff line change 1- FROM golang:1.23.6 -alpine as builder
1+ FROM golang:1.23.9 -alpine as builder
22
33# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
44# queries required to connect to linked containers succeed.
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ DOCKER_TOOLS = docker run \
5757 -v $(shell bash -c "mkdir -p /tmp/go-lint-cache; echo /tmp/go-lint-cache") :/root/.cache/golangci-lint \
5858 -v $$(pwd ) :/build taproot-assets-tools
5959
60- GO_VERSION = 1.23.6
60+ GO_VERSION = 1.23.9
6161
6262GREEN := "\\033[0;32m"
6363NC := "\\033[0m"
Original file line number Diff line number Diff line change 1- FROM golang:1.23.6 as builder
1+ FROM golang:1.23.9 as builder
22
33WORKDIR /app
44
Original file line number Diff line number Diff line change 1- FROM golang:1.23.6 as builder
1+ FROM golang:1.23.9 as builder
22
33WORKDIR /app
44
Original file line number Diff line number Diff line change 1- FROM golang:1.23.6 -bookworm
1+ FROM golang:1.23.9 -bookworm
22
33MAINTAINER Olaoluwa Osuntokun <
[email protected] >
44
Original file line number Diff line number Diff line change 1- FROM golang:1.23.6 -bookworm
1+ FROM golang:1.23.9 -bookworm
22
33RUN apt-get update && apt-get install -y \
44 git \
Original file line number Diff line number Diff line change @@ -42,17 +42,17 @@ const (
4242 AppMajor uint = 0
4343
4444 // AppMinor defines the minor version of this binary.
45- AppMinor uint = 5
45+ AppMinor uint = 6
4646
4747 // AppPatch defines the application patch for this binary.
48- AppPatch uint = 1
48+ AppPatch uint = 0
4949
5050 // AppStatus defines the release status of this binary (e.g. beta).
5151 AppStatus = "alpha"
5252
5353 // AppPreRelease defines the pre-release version of this binary.
5454 // It MUST only contain characters from the semantic versioning spec.
55- AppPreRelease = ""
55+ AppPreRelease = "rc1 "
5656
5757 // GitTagIncludeStatus indicates whether the status should be included
5858 // in the git tag name.
You can’t perform that action at this time.
0 commit comments