File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed
Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99
1010 steps :
11- - uses : actions/checkout@v4
12- - uses : actions/setup-go@v5
11+ - uses : actions/checkout@v5
12+ - uses : actions/setup-go@v6
1313 with :
14- go-version : 1.24 .x
14+ go-version : 1.25 .x
1515 stable : true
1616
1717 - run : go get -v -t -d ./...
3636 id-token : write
3737
3838 steps :
39- - uses : actions/checkout@v4
39+ - uses : actions/checkout@v5
4040
4141 - if : startsWith(github.ref, 'refs/tags/v')
4242 run : echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
Original file line number Diff line number Diff line change @@ -18,11 +18,7 @@ LD_FLAGS ?= $(if $(VERSION),-X main.Version=${VERSION}) \
1818 -X main.BuildDate=$(shell date "+% F-% T") \
1919 -X main.Commit=${COMMIT}
2020
21- ifdef GOTOOLCHAIN
22- GO_VERSION=$(GOTOOLCHAIN)
23- else
24- GO_VERSION=$(shell go mod edit -json | jq -r .Toolchain | sed -e 's/go//')
25- endif
21+ GO_VERSION =$(shell go mod edit -json | jq -r .Toolchain | sed -e 's/go//')
2622
2723build-docker-multiarch :
2824 docker buildx build \
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/gotify/cli/v2
22
33go 1.23
44
5- toolchain go1.24 .1
5+ toolchain go1.25 .1
66
77require (
88 github.com/adrg/xdg v0.4.0
You can’t perform that action at this time.
0 commit comments