Skip to content

Commit

Permalink
build(deps): Bump submodules and dependencies (#895)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
3 people authored May 15, 2024
1 parent a4dbb33 commit c7388bb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ REGISTRY ?= ""
ifneq (,$(findstring arm64,$(ARCH)))
SUPPORTED_ARCH = true
LIMA_ARCH = aarch64
# From https://dl.fedoraproject.org/pub/fedora/linux/releases/39/Cloud/aarch64/images/
FINCH_OS_BASENAME ?= Fedora-Cloud-Base-39-1.5.aarch64-20240322230317.qcow2
LIMA_URL ?= https://deps.runfinch.com/aarch64/lima-and-qemu.macos-aarch64.1712655075.tar.gz
# From https://dl.fedoraproject.org/pub/fedora/linux/releases/40/Cloud/aarch64/images/
FINCH_OS_BASENAME ?= Fedora-Cloud-Base-40-1.14.aarch64-20240514214641.qcow2
LIMA_URL ?= https://deps.runfinch.com/aarch64/lima-and-qemu.macos-aarch64.1715678889.tar.gz
else ifneq (,$(findstring x86_64,$(ARCH)))
SUPPORTED_ARCH = true
LIMA_ARCH = x86_64
# From https://dl.fedoraproject.org/pub/fedora/linux/releases/39/Cloud/x86_64/images/
FINCH_OS_BASENAME ?= Fedora-Cloud-Base-39-1.5.x86_64-20240322192200.qcow2
LIMA_URL ?= https://deps.runfinch.com/x86-64/lima-and-qemu.macos-x86_64.1712655075.tar.gz
FINCH_ROOTFS_URL ?= https://deps.runfinch.com/common/x86-64/finch-rootfs-production-amd64-1711139710.tar.gz
# From https://dl.fedoraproject.org/pub/fedora/linux/releases/40/Cloud/x86_64/images/
FINCH_OS_BASENAME ?= Fedora-Cloud-Base-40-1.14.x86_64-20240514214655.qcow2
LIMA_URL ?= https://deps.runfinch.com/x86-64/lima-and-qemu.macos-x86_64.1715678889.tar.gz
FINCH_ROOTFS_URL ?= https://deps.runfinch.com/common/x86-64/finch-rootfs-production-amd64-1715724303.tar.gz
FINCH_ROOTFS_BASENAME := $(notdir $(FINCH_ROOTFS_URL))
endif

Expand Down
4 changes: 2 additions & 2 deletions e2e/vm/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import (
)

const (
nerdctlVersion = "v1.7.5"
nerdctlVersion = "v1.7.6"
buildKitVersion = "v0.12.5"
containerdVersion = "v1.7.14"
containerdVersion = "v1.7.16"
runcVersion = "1.1.12"
)

Expand Down

0 comments on commit c7388bb

Please sign in to comment.