From b26d5645be81dbce6519a4eac9b5bba6afcb5c2f Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 16 Dec 2024 11:50:49 -0600 Subject: [PATCH 1/2] Enable 'quiet: true' in condarc (#217) --- context/condarc.tmpl | 1 + 1 file changed, 1 insertion(+) diff --git a/context/condarc.tmpl b/context/condarc.tmpl index 9700665..b33f107 100644 --- a/context/condarc.tmpl +++ b/context/condarc.tmpl @@ -13,3 +13,4 @@ conda-build: output_folder: $RAPIDS_CONDA_BLD_OUTPUT_DIR number_channel_notices: 0 always_yes: true +quiet: true From 5781086c64826fc77ff35af71c0d48259d43f4b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:50:20 -0600 Subject: [PATCH 2/2] Update condaforge/miniforge3 Docker tag to v24.9.2 (#208) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: James Lamb Co-authored-by: Bradley Dice --- ci-conda.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-conda.Dockerfile b/ci-conda.Dockerfile index 0d76e9b..c33a1db 100644 --- a/ci-conda.Dockerfile +++ b/ci-conda.Dockerfile @@ -22,7 +22,7 @@ usermod -g conda root EOF # Ownership & permissions based on https://docs.anaconda.com/anaconda/install/multi-user/#multi-user-anaconda-installation-on-linux -COPY --from=condaforge/miniforge3:24.9.0-0 --chown=root:conda --chmod=770 /opt/conda /opt/conda +COPY --from=condaforge/miniforge3:24.9.2-0 --chown=root:conda --chmod=770 /opt/conda /opt/conda # Ensure new files are created with group write access & setgid. See https://unix.stackexchange.com/a/12845 RUN chmod g+ws /opt/conda