From d12de208683d29c426388378eb42a45e4368b949 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Mon, 25 Nov 2024 18:13:14 +0200 Subject: [PATCH] ci: use rust 1.7.9 for release workflow and dockerfile (#999) * ci: use rust 1.7.9 for release workflow (#996) * docker: use rust 1.7.9 for docker (#996) --- .github/workflows/release.yml | 2 +- docker/codex.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2fee5dd5..dd42f740 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: env: cache_nonce: 0 # Allows for easily busting actions/cache caches nim_version: pinned - rust_version: 1.78.0 + rust_version: 1.79.0 codex_binary_base: codex cirdl_binary_base: cirdl build_dir: build diff --git a/docker/codex.Dockerfile b/docker/codex.Dockerfile index 7811a38f..e9234753 100644 --- a/docker/codex.Dockerfile +++ b/docker/codex.Dockerfile @@ -1,7 +1,7 @@ # Variables ARG BUILDER=ubuntu:24.04 ARG IMAGE=${BUILDER} -ARG RUST_VERSION=${RUST_VERSION:-1.78.0} +ARG RUST_VERSION=${RUST_VERSION:-1.79.0} ARG BUILD_HOME=/src ARG MAKE_PARALLEL=${MAKE_PARALLEL:-4} ARG NIMFLAGS="${NIMFLAGS:-"-d:disableMarchNative"}"