From 1bc56bdf943390fb8519b4909ceb61f0bccc2d20 Mon Sep 17 00:00:00 2001 From: ParkGyeongTae Date: Tue, 10 Mar 2026 00:22:18 +0900 Subject: [PATCH] [ZEPPELIN-6403] Fix deprecated auto-activate-base parameter in GitHub Actions Replace deprecated 'auto-activate-base' parameter with 'auto-activate' in conda-incubator/setup-miniconda@v3 action. The auto-activate-base parameter has been deprecated in favor of the more clearly named auto-activate parameter. This change removes deprecation warnings from GitHub Actions workflow logs. Changes: - .github/workflows/frontend.yml: 2 occurrences - .github/workflows/core.yml: 8 occurrences No functional changes - all conda environments continue to work identically as before --- .github/workflows/core.yml | 16 ++++++++-------- .github/workflows/frontend.yml | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 55a84f9b1eb..8bc26639dd3 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -75,7 +75,7 @@ jobs: python-version: 3.9 channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: Make IRkernel available to Jupyter run: | @@ -125,7 +125,7 @@ jobs: python-version: 3.9 channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: verify interpreter run: ./mvnw verify -am -pl ${INTERPRETERS} ${MAVEN_ARGS} @@ -167,7 +167,7 @@ jobs: python-version: ${{ matrix.python }} channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: Make IRkernel available to Jupyter run: | @@ -222,7 +222,7 @@ jobs: python-version: 3.9 channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: Make IRkernel available to Jupyter run: | @@ -278,7 +278,7 @@ jobs: python-version: ${{ matrix.python }} channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: run tests for flink run: ./mvnw verify -pl flink/flink-scala-2.12,flink-cmd,zeppelin-interpreter-integration -Pflink-${{ matrix.flink }} -am -Pintegration -DfailIfNoTests=false -Dtest=org.apache.zeppelin.flink.*Test,FlinkIntegrationTest${{ matrix.flink }} ${MAVEN_ARGS} @@ -326,7 +326,7 @@ jobs: python-version: 3.9 channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: Make IRkernel available to Jupyter run: | @@ -373,7 +373,7 @@ jobs: python-version: ${{ matrix.python }} channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: Make IRkernel available to Jupyter run: | @@ -442,7 +442,7 @@ jobs: python-version: 3.9 channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: Make IRkernel available to Jupyter run: | diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index d91f2573e96..f019d213c68 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -117,7 +117,7 @@ jobs: with: activate-environment: python_only python-version: ${{ matrix.python }} - auto-activate-base: false + auto-activate: false use-mamba: true channels: conda-forge,defaults channel-priority: strict @@ -192,7 +192,7 @@ jobs: python-version: 3.9 channels: conda-forge,defaults channel-priority: strict - auto-activate-base: false + auto-activate: false use-mamba: true - name: Make IRkernel available to Jupyter run: |