From 44cf4d55f74154146cd7a71ee92750503fc6e51b Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Sat, 11 Jan 2025 07:46:34 -0600 Subject: [PATCH] Try not updating conda in workflows Hoping this will prevent download failures --- .github/workflows/build_workflow.yml | 2 +- .github/workflows/docs_workflow.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_workflow.yml b/.github/workflows/build_workflow.yml index 391f85d94e..be4387fd33 100644 --- a/.github/workflows/build_workflow.yml +++ b/.github/workflows/build_workflow.yml @@ -89,7 +89,7 @@ jobs: channels: conda-forge,e3sm/label/compass channel-priority: strict use-mamba: false - auto-update-conda: true + auto-update-conda: false python-version: ${{ matrix.python-version }} - if: ${{ steps.skip_check.outputs.should_skip != 'true' }} diff --git a/.github/workflows/docs_workflow.yml b/.github/workflows/docs_workflow.yml index 383c8215a8..8008c3b959 100644 --- a/.github/workflows/docs_workflow.yml +++ b/.github/workflows/docs_workflow.yml @@ -41,7 +41,7 @@ jobs: channels: conda-forge,e3sm/label/compass channel-priority: strict use-mamba: false - auto-update-conda: true + auto-update-conda: false python-version: ${{ matrix.python-version }} - if: ${{ steps.skip_check.outputs.should_skip != 'true' }}