Skip to content

Commit a4b9679

Browse files
authored
build(deps): update nerdctl-full and soci versions (runfinch#1097)
* deps: update nerdctl-full and soci versions Signed-off-by: Justin Alvarez <[email protected]> * fix file path in archive Signed-off-by: Justin Alvarez <[email protected]> --------- Signed-off-by: Justin Alvarez <[email protected]>
1 parent 1b69542 commit a4b9679

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

Diff for: e2e/vm/version_remote_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import (
1919
)
2020

2121
const (
22-
nerdctlVersion = "v1.7.6"
23-
buildKitVersion = "v0.12.5"
24-
containerdVersion = "v1.7.16"
25-
runcVersion = "1.1.12"
22+
nerdctlVersion = "v1.7.7"
23+
buildKitVersion = "v0.15.2"
24+
containerdVersion = "v1.7.22"
25+
runcVersion = "1.1.14"
2626
)
2727

2828
type Versions struct {

Diff for: finch.yaml.d/common.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ containerd:
88
user: false
99
# Override containerd archive
1010
# 🟢 Builtin default: hard-coded URL with hard-coded digest (see the output of `limactl info | jq .defaultTemplate.containerd.archives`)
11-
# archives:
12-
# - location: "https://deps.runfinch.com/x86-64/nerdctl-full-1.7.2-1-linux-amd64.tar.gz"
13-
# arch: "x86_64"
14-
# digest: "sha256:90851068e58417551384dafb3fced8165cbfa2799b51849f85f44c0ebef2c37a"
15-
# - location: "https://deps.runfinch.com/aarch64/nerdctl-full-1.7.2-1-linux-arm64.tar.gz"
16-
# arch: "aarch64"
17-
# digest: "sha256:f354541e6234235f2ea32d6ed64e9d59a7cc4e0b7f15e63deef9cd5e90a298ef"
11+
archives:
12+
- location: "https://deps.runfinch.com/x86-64/nerdctl-full-1.7.7-linux-amd64.tar.gz"
13+
arch: "x86_64"
14+
digest: "sha256:a731eac93e8e9dda1a0d76dc1606438deb0668ea7d6bd5c5af436353ed9f65c5"
15+
- location: "https://deps.runfinch.com/aarch64/nerdctl-full-1.7.7-linux-arm64.tar.gz"
16+
arch: "aarch64"
17+
digest: "sha256:b161a20c0e41f9ad999e8411e23c58ece4b3e584ae90b4252b76a39eee4a0c31"
1818

1919
provision:
2020
- mode: system

Diff for: pkg/config/lima_config_applier.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ import (
2020
)
2121

2222
const (
23-
sociVersion = "0.5.0"
24-
sociAMD64Sha256Sum = "768f73dbd2c772386df1d12d0a371e9cbcefebea4856623335a2e8ea5170691c"
25-
sociARM64Sha256Sum = "9238e00426ec67a725d511e232476248f2379d66a4ccab224a50ad4c56a0292e"
23+
sociVersion = "0.7.0"
24+
sociAMD64Sha256Sum = "8766cdd479272dcc86299e70a0f7a9343f940c98285c1491bb3c3cdc05b26f47"
25+
sociARM64Sha256Sum = "731d846b0884840feeba5dcc0f10d0b326d843d991b2ba1bee7ad2c90c225032"
2626
snapshotterProvisioningScriptHeader = "# snapshotter provisioning script"
2727
sociInstallationProvisioningScriptHeader = snapshotterProvisioningScriptHeader + ": soci"
2828
sociFileNameFormat = "soci-snapshotter-%s-linux-%s.tar.gz"
@@ -43,7 +43,7 @@ if [ ! -f /usr/local/bin/soci ]; then
4343
(echo "error: shasum verification failed for SOCI release tarball" && rm -f "${release_tarball}" && exit 1)
4444
4545
# move to usr/local/bin
46-
tar -C /usr/local/bin -xvf ${release_tarball} ./soci ./soci-snapshotter-grpc
46+
tar -C /usr/local/bin -xvf ${release_tarball} soci soci-snapshotter-grpc
4747
4848
# install as a systemd service
4949
curl --retry 2 --retry-max-time 120 -OL "%s"

0 commit comments

Comments
 (0)