Skip to content

Commit

Permalink
Bump the go version to 1.21.8 (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwneisen authored Mar 8, 2024
1 parent 1450172 commit 9a8a9fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
GO_VERSION=1.21.3
GO_VERSION=1.21.8
HUGO_VERSION=0.114.0
LIMA_VERSION=0.20.1
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
cat ~/.lima/default/ssh.config >> ~/.ssh/config
- run: rsync -a -e ssh src/github.com/Mirantis/cri-dockerd/ lima-default:/tmp/cri-dockerd
- run: ssh lima-default sudo /tmp/cri-dockerd/scripts/setup-el
- run: ssh lima-default sudo /tmp/cri-dockerd/scripts/setup-el ${{ env.GO_VERSION }}
- run: ssh lima-default "export PATH=$PATH:/usr/local/go/bin && make -C /tmp/cri-dockerd cri-dockerd"
- run: ssh -f lima-default sudo /tmp/cri-dockerd/cri-dockerd --network-plugin="" &
- run: ssh lima-default sudo /usr/local/bin/critest -runtime-endpoint=unix:///var/run/cri-dockerd.sock -ginkgo.focus='.*selinux.*' -ginkgo.v
4 changes: 2 additions & 2 deletions scripts/setup-el
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ cat <<EOF >/etc/docker/daemon.json
EOF

echo "Installing Golang"
curl -O https://dl.google.com/go/go1.22.1.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.22.1.linux-amd64.tar.gz
curl -O https://dl.google.com/go/go${1}.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go${1}.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin

echo "Installing other dependencies"
Expand Down

0 comments on commit 9a8a9fe

Please sign in to comment.