Skip to content

Commit

Permalink
Updated recommended runc version to 1.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Madeeks committed Sep 4, 2024
1 parent 71f4a97 commit 9153d4b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- Configuration templates and documentation for OCI hooks now use createRuntime, createContainer or startContainer execution stages, instead of the prestart stage which has been deprecated since version 1.0.2 of the OCI Runtime specification. The only exception is the NVIDIA container toolkit hook.
- Updated the build environment of the Sarus static standalone package to Alpine Linux 3.20 with a GCC 13.2.1 toolchain
- Updated recommended runc version to 1.1.13
- Updated recommended runc version to 1.1.14
- Updated recommended Boost version to 1.85.0
- Updated recommended RapidJSON version to commit ab1842a2da

Expand Down
2 changes: 1 addition & 1 deletion CI/installation/install_dep_runc.bash
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pwd_bak=$PWD

# Install runc
cd /tmp && \
wget -O runc.amd64 https://github.com/opencontainers/runc/releases/download/v1.1.13/runc.amd64 && \
wget -O runc.amd64 https://github.com/opencontainers/runc/releases/download/v1.1.14/runc.amd64 && \
chmod 755 runc.amd64 && \
sudo mv runc.amd64 /usr/local/bin/ && \
sudo chown root:root /usr/local/bin/runc.amd64 && \
Expand Down
2 changes: 1 addition & 1 deletion CI/installation/install_packages_fedora:38.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sudo rm -rf /var/cache/dnf

# The following dependencies are not provided via the system's package manager
# and should be installed manually:
# - Runc version 1.1.13
# - Runc version 1.1.14
# - Umoci

# DOCS: END
Expand Down
2 changes: 1 addition & 1 deletion CI/installation/install_packages_ubuntu:22.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sudo rm -rf /var/lib/apt/lists/*

# The following dependencies are not provided via the system's package manager
# and should be installed manually:
# - Runc version 1.1.13
# - Runc version 1.1.14

# DOCS: END

Expand Down
2 changes: 1 addition & 1 deletion CI/utility_functions.bash
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ build_sarus_archive() {

# runc is statically linked with libseccomp, which is licensed under GNU LGPL-2.1.
# To comply with LGPL-2.1 (§6(a)), include the libseccomp source code in the licenses folder.
wget -O ${prefix_dir}/licenses/libseccomp-2.5.5.tar.gz https://github.com/opencontainers/runc/releases/download/v1.1.13/libseccomp-2.5.5.tar.gz
wget -O ${prefix_dir}/licenses/libseccomp-2.5.5.tar.gz https://github.com/opencontainers/runc/releases/download/v1.1.14/libseccomp-2.5.5.tar.gz

mkdir -pv ${prefix_dir}/var/OCIBundleDir

Expand Down
2 changes: 1 addition & 1 deletion doc/install/requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Sarus internally relies on an OCI-compliant runtime to spawn a container.

Here we will provide some indications to install `runc
<https://github.com/opencontainers/runc>`_, the reference implementation from
the Open Container Initiative. The recommended version is **v1.1.13**.
the Open Container Initiative. The recommended version is **v1.1.14**.

.. important::
Due to the changes and hardening measures they introduced,
Expand Down

0 comments on commit 9153d4b

Please sign in to comment.