Skip to content

Commit

Permalink
upgrade to go 1.23.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rgl committed Nov 8, 2024
1 parent 54618b4 commit dbecdf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/go/files/install-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -euxo pipefail

# bail when already installed.
if [ -x /opt/go/bin/go ]; then
# e.g. go version go1.23.2 linux/amd64
# e.g. go version go1.23.3 linux/amd64
actual_version="$(/opt/go/bin/go version | perl -ne '/^go version go(.+?) / && print $1')"
if [ "$actual_version" == "$GO_VERSION" ]; then
echo 'ANSIBLE CHANGED NO'
Expand Down
2 changes: 1 addition & 1 deletion roles/go/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# see https://go.dev/doc/install
# see https://github.com/golang/go/tags
# renovate: datasource=github-tags depName=golang/go extractVersion=go(?<version>.+)
go_version: '1.23.2'
go_version: '1.23.3'

0 comments on commit dbecdf1

Please sign in to comment.