From 904fa5c860171336995232ac2ee3fab0fd737dd5 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Fri, 13 Nov 2020 15:13:39 +0000 Subject: [PATCH] Backport PR #37812: CI: The `set-env` and `add-path` commands are deprecated and will be disabled on November 16th. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 149acef72db26..af9f41062d096 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Setting conda path - run: echo "::add-path::${HOME}/miniconda3/bin" + run: echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH - name: Checkout uses: actions/checkout@v1 @@ -104,7 +104,7 @@ jobs: steps: - name: Setting conda path - run: echo "::set-env name=PATH::${HOME}/miniconda3/bin:${PATH}" + run: echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH - name: Checkout uses: actions/checkout@v1