Skip to content

Commit

Permalink
Merge pull request #471 from Ajpantuso/apantuso/upgrade_go1.20
Browse files Browse the repository at this point in the history
fix: bump to go 1.20
  • Loading branch information
Ajpantuso authored Sep 27, 2023
2 parents f6cba35 + d2dd403 commit eda3c66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions cicd/jenkins_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -exvo pipefail -o nounset

GO_1_19="/opt/go/1.19.3/bin"
GO_1_20="/opt/go/1.20.6/bin"

if [ -d "${GO_1_19}" ]; then
PATH="${GO_1_19}:${PATH}"
if [ -d "${GO_1_20}" ]; then
PATH="${GO_1_20}:${PATH}"
fi
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mt-sre/addon-metadata-operator

go 1.19
go 1.20

require (
github.com/alexeyco/simpletable v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools

go 1.19
go 1.20

require (
github.com/golangci/golangci-lint v1.54.2
Expand Down

0 comments on commit eda3c66

Please sign in to comment.