Skip to content

Commit

Permalink
infra: update golang to latest minor version of 1.22 (#12801)
Browse files Browse the repository at this point in the history
cc @guidovranken as I see cryptofuzz is using go1.22.7

Should fix ngolo-fuzzing build failure 
https://issues.oss-fuzz.com/issues/379159151

> go tool dist: go1.22.1 does not meet the minimum bootstrap requirement
of go1.22.6 or later

Co-authored-by: DavidKorczynski <[email protected]>
  • Loading branch information
catenacyber and DavidKorczynski authored Jan 7, 2025
1 parent 34680de commit 9c210fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/base-images/base-builder/install_go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
################################################################################

cd /tmp
wget https://go.dev/dl/go1.22.1.linux-amd64.tar.gz
wget https://go.dev/dl/go1.22.9.linux-amd64.tar.gz
mkdir temp-go
tar -C temp-go/ -xzf go1.22.1.linux-amd64.tar.gz
tar -C temp-go/ -xzf go1.22.9.linux-amd64.tar.gz
mkdir /root/.go/
mv temp-go/go/* /root/.go/
rm -rf temp-go
Expand Down

0 comments on commit 9c210fd

Please sign in to comment.