diff --git a/CHANGELOG.md b/CHANGELOG.md index 67c2dfe1..9510bdb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/CI/installation/install_dep_runc.bash b/CI/installation/install_dep_runc.bash index 282bc11c..c9c1234f 100755 --- a/CI/installation/install_dep_runc.bash +++ b/CI/installation/install_dep_runc.bash @@ -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 && \ diff --git a/CI/installation/install_packages_fedora:38.sh b/CI/installation/install_packages_fedora:38.sh index ca090e4f..154c8608 100755 --- a/CI/installation/install_packages_fedora:38.sh +++ b/CI/installation/install_packages_fedora:38.sh @@ -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 diff --git a/CI/installation/install_packages_ubuntu:22.04.sh b/CI/installation/install_packages_ubuntu:22.04.sh index 0a6834dd..840f7f7a 100755 --- a/CI/installation/install_packages_ubuntu:22.04.sh +++ b/CI/installation/install_packages_ubuntu:22.04.sh @@ -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 diff --git a/CI/utility_functions.bash b/CI/utility_functions.bash index a1e789fa..8375e74c 100644 --- a/CI/utility_functions.bash +++ b/CI/utility_functions.bash @@ -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 diff --git a/doc/install/requirements.rst b/doc/install/requirements.rst index e9900d91..5a04e335 100644 --- a/doc/install/requirements.rst +++ b/doc/install/requirements.rst @@ -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 `_, 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,