From 943c0cd5adf98a0a6c0fcb3036be6df357add6d4 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Fri, 13 Nov 2020 12:31:59 +0000 Subject: [PATCH 1/2] CI: The `set-env` command is 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 b391871b18245..c11cef01ffe9c 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 @@ -98,7 +98,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 From 65554c77ea3961a6d7ca6534a11b869f2995e2f4 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Fri, 13 Nov 2020 12:36:43 +0000 Subject: [PATCH 2/2] add missing quotes --- .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 c11cef01ffe9c..c00cec450c85e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Setting conda path - run: echo ${HOME}/miniconda3/bin" >> $GITHUB_PATH + run: echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH - name: Checkout uses: actions/checkout@v1 @@ -98,7 +98,7 @@ jobs: steps: - name: Setting conda path - run: echo ${HOME}/miniconda3/bin" >> $GITHUB_PATH + run: echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH - name: Checkout uses: actions/checkout@v1