From 0c443dc9e8da77ff27878d5dce7c8a74be988c1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 09:30:53 +0000 Subject: [PATCH 1/2] Bump third_party/libnvidia-container from `584976a` to `a83ddc0` Bumps [third_party/libnvidia-container](https://github.com/NVIDIA/libnvidia-container) from `584976a` to `a83ddc0`. - [Release notes](https://github.com/NVIDIA/libnvidia-container/releases) - [Commits](https://github.com/NVIDIA/libnvidia-container/compare/584976abaef996d9466232a9bc7426fcdb0ed1e0...a83ddc087e255fa88612f7d6afa43acdd71ddd96) --- updated-dependencies: - dependency-name: third_party/libnvidia-container dependency-version: a83ddc087e255fa88612f7d6afa43acdd71ddd96 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Signed-off-by: Evan Lezar (cherry picked from commit ed2ce6b1651ed1d2d6a62354da0f979554b30d4e) --- third_party/libnvidia-container | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/libnvidia-container b/third_party/libnvidia-container index 584976aba..a83ddc087 160000 --- a/third_party/libnvidia-container +++ b/third_party/libnvidia-container @@ -1 +1 @@ -Subproject commit 584976abaef996d9466232a9bc7426fcdb0ed1e0 +Subproject commit a83ddc087e255fa88612f7d6afa43acdd71ddd96 From b102422b0d798667b8735d7383d8a220bac9bd4f Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Wed, 21 Jan 2026 14:57:04 +0100 Subject: [PATCH 2/2] [no-relnote] Set golang version when building libnvidia-container This change ensures that we use the same golang version to build the NVIDIA Container Toolkit packages and the packages in libnvidia-container. Signed-off-by: Evan Lezar (cherry picked from commit 008b4a9d0372c4fbb7968ae13931dc7c36b0dcd8) --- scripts/build-all-components.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/build-all-components.sh b/scripts/build-all-components.sh index 5af1e7200..5d190c270 100755 --- a/scripts/build-all-components.sh +++ b/scripts/build-all-components.sh @@ -47,17 +47,20 @@ echo "Building ${TARGET} for all packages to ${DIST_DIR}" : "${NVIDIA_CONTAINER_TOOLKIT_ROOT:=${PROJECT_ROOT}}" -"${SCRIPTS_DIR}/get-component-versions.sh" - if [[ -z "${NVIDIA_CONTAINER_TOOLKIT_VERSION}" || -z "${LIBNVIDIA_CONTAINER_VERSION}" ]]; then eval $(${SCRIPTS_DIR}/get-component-versions.sh) fi +if [[ -z "${GOLANG_VERSION}" ]]; then + GOLANG_VERSION=$(${PROJECT_ROOT}/hack/golang-version.sh) +fi + # Build libnvidia-container if [[ -z ${SKIP_LIBNVIDIA_CONTAINER} ]]; then make -C "${LIBNVIDIA_CONTAINER_ROOT}" -f mk/docker.mk \ LIB_VERSION=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \ LIB_TAG=${NVIDIA_CONTAINER_TOOLKIT_TAG} \ + GOLANG_VERSION=${GOLANG_VERSION} \ "${TARGET}" fi