Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump to Go 1.21.5 #27

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19 as build
FROM golang:1.21 as build

ARG BUILD_SHA

Expand Down
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ Vagrant.configure("2") do |config|
net-tools \
;

goversion=1.19.2
goversion=1.21.5
wget https://go.dev/dl/go${goversion}.linux-amd64.tar.gz
echo "5e8c5a74fe6470dd7e055a461acda8bb4050ead8c2df70f227e3ff7d8eb7eeb6 go${goversion}.linux-amd64.tar.gz" | sha256sum --check
echo "aea86e3c73495f205929cfebba0d63f1382c8ac59be081b6351681415f4063cf go${goversion}.linux-amd64.tar.gz" | sha256sum --check
rm -rf /usr/local/go && tar -C /usr/local -xzf go${goversion}.linux-amd64.tar.gz
echo 'export PATH=/usr/local/go/bin:$PATH' | tee /etc/profile.d/golang.sh
/usr/local/go/bin/go version
Expand Down
2 changes: 1 addition & 1 deletion dockerproxy/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/superfly/rchab/dockerproxy

go 1.19
go 1.21

require (
github.com/docker/docker v20.10.8+incompatible
Expand Down
Loading