Skip to content

Commit

Permalink
nerdctl: update to v0.19.0
Browse files Browse the repository at this point in the history
Signed-off-by: Akihiro Suda <[email protected]>
  • Loading branch information
AkihiroSuda committed Apr 22, 2022
1 parent 0efcd21 commit 6c08e6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/limayaml/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ const (
)

func defaultContainerdArchives() []File {
const nerdctlVersion = "0.18.0"
const nerdctlVersion = "0.19.0"
location := func(goarch string) string {
return "https://github.com/containerd/nerdctl/releases/download/v" + nerdctlVersion + "/nerdctl-full-" + nerdctlVersion + "-linux-" + goarch + ".tar.gz"
}
return []File{
{
Location: location("amd64"),
Arch: X8664,
Digest: "sha256:62573b9e3bca6794502ad04ae77a2b12ec80aeaa21e8b9bbc5562f3e6348eb66",
Digest: "sha256:440c90a37e3bfc5d1dfa12bec5b65ed22bc479e13a5e141a69e24ae55a883ae8",
},
{
Location: location("arm64"),
Arch: AARCH64,
Digest: "sha256:6e3ca13479f0128e0ea3813bfba6a7ecc04707840f49ee248a64bfb2126bab4c",
Digest: "sha256:d07c5213a6789eb1d3d07febaa982a043611e8205264066388c43317924cf446",
},
}
}
Expand Down

0 comments on commit 6c08e6d

Please sign in to comment.