Skip to content

testutil: bump up GolangImage to 1.23 #4215

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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: 2 additions & 0 deletions pkg/testutil/testutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -768,3 +768,5 @@ func mirrorOf(s string) string {
// plain mirror, NOT stargz-converted images
return fmt.Sprintf("ghcr.io/stargz-containers/%s-org", s)
}

var GolangImage = mirrorOf("golang:1.23")
1 change: 0 additions & 1 deletion pkg/testutil/testutil_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,4 @@ var (
BusyboxImage = "ghcr.io/containerd/busybox:1.36"
AlpineImage = mirrorOf("alpine:3.13")
NginxAlpineImage = mirrorOf("nginx:1.19-alpine")
GolangImage = mirrorOf("golang:1.18")
)
1 change: 0 additions & 1 deletion pkg/testutil/testutil_freebsd.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,4 @@ var (
BusyboxImage = "ghcr.io/containerd/busybox:1.36"
AlpineImage = mirrorOf("alpine:3.13")
NginxAlpineImage = mirrorOf("nginx:1.19-alpine")
GolangImage = mirrorOf("golang:1.18")
)
1 change: 0 additions & 1 deletion pkg/testutil/testutil_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ var (
FluentdImage = "fluent/fluentd:v1.17.0-debian-1.0"
KuboImage = mirrorOf("ipfs/kubo:v0.16.0")
SystemdImage = "ghcr.io/containerd/stargz-snapshotter:0.15.1-kind"
GolangImage = mirrorOf("golang:1.18")

// Source: https://gist.github.com/cpuguy83/fcf3041e5d8fb1bb5c340915aabeebe0
NonDistBlobImage = "ghcr.io/cpuguy83/non-dist-blob:latest"
Expand Down
1 change: 0 additions & 1 deletion pkg/testutil/testutil_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ const (
)

var (
GolangImage = mirrorOf("fixme-test-using-this-image-is-disabled-on-windows")
AlpineImage = mirrorOf("fixme-test-using-this-image-is-disabled-on-windows")

hypervContainer bool
Expand Down
Loading