Skip to content

Commit c7388bb

Browse files
build(deps): Bump submodules and dependencies (runfinch#895)
Bump for Finch's dependencies. Currently, this updates values based on artifacts defined in the finch-core repository, such as: operating system images, and the version of Lima (and it's dependencies), which are bundled as `lima-and-qemu.macos-*.*.tar.gz` archives. Since updating the Lima version may also update the default version of the `nerdctl-full` archive (which contains nerdctl, containerd, buildkit, etc.), this may require a manual update to [`e2e/vm/version_test.go`](https://github.com/runfinch/finch/tree/create-pull-request/patch/e2e/vm/version_test.go). To do so, checkout this PR branch locally, add a new commit to the branch, and push back to the branch: ```bash git fetch --all git switch create-pull-request/patch # make changes git add e2e/vm/version_test.go git commit -s "update dependency versions in version test" git push ``` --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Justin Alvarez <[email protected]> Co-authored-by: pendo324 <[email protected]> Co-authored-by: Justin Alvarez <[email protected]>
1 parent a4dbb33 commit c7388bb

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Diff for: Makefile

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ REGISTRY ?= ""
4141
ifneq (,$(findstring arm64,$(ARCH)))
4242
SUPPORTED_ARCH = true
4343
LIMA_ARCH = aarch64
44-
# From https://dl.fedoraproject.org/pub/fedora/linux/releases/39/Cloud/aarch64/images/
45-
FINCH_OS_BASENAME ?= Fedora-Cloud-Base-39-1.5.aarch64-20240322230317.qcow2
46-
LIMA_URL ?= https://deps.runfinch.com/aarch64/lima-and-qemu.macos-aarch64.1712655075.tar.gz
44+
# From https://dl.fedoraproject.org/pub/fedora/linux/releases/40/Cloud/aarch64/images/
45+
FINCH_OS_BASENAME ?= Fedora-Cloud-Base-40-1.14.aarch64-20240514214641.qcow2
46+
LIMA_URL ?= https://deps.runfinch.com/aarch64/lima-and-qemu.macos-aarch64.1715678889.tar.gz
4747
else ifneq (,$(findstring x86_64,$(ARCH)))
4848
SUPPORTED_ARCH = true
4949
LIMA_ARCH = x86_64
50-
# From https://dl.fedoraproject.org/pub/fedora/linux/releases/39/Cloud/x86_64/images/
51-
FINCH_OS_BASENAME ?= Fedora-Cloud-Base-39-1.5.x86_64-20240322192200.qcow2
52-
LIMA_URL ?= https://deps.runfinch.com/x86-64/lima-and-qemu.macos-x86_64.1712655075.tar.gz
53-
FINCH_ROOTFS_URL ?= https://deps.runfinch.com/common/x86-64/finch-rootfs-production-amd64-1711139710.tar.gz
50+
# From https://dl.fedoraproject.org/pub/fedora/linux/releases/40/Cloud/x86_64/images/
51+
FINCH_OS_BASENAME ?= Fedora-Cloud-Base-40-1.14.x86_64-20240514214655.qcow2
52+
LIMA_URL ?= https://deps.runfinch.com/x86-64/lima-and-qemu.macos-x86_64.1715678889.tar.gz
53+
FINCH_ROOTFS_URL ?= https://deps.runfinch.com/common/x86-64/finch-rootfs-production-amd64-1715724303.tar.gz
5454
FINCH_ROOTFS_BASENAME := $(notdir $(FINCH_ROOTFS_URL))
5555
endif
5656

Diff for: e2e/vm/version_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import (
1717
)
1818

1919
const (
20-
nerdctlVersion = "v1.7.5"
20+
nerdctlVersion = "v1.7.6"
2121
buildKitVersion = "v0.12.5"
22-
containerdVersion = "v1.7.14"
22+
containerdVersion = "v1.7.16"
2323
runcVersion = "1.1.12"
2424
)
2525

0 commit comments

Comments
 (0)