From 0d9579e21c873f4c666d59d12bf36e3b3d8057e7 Mon Sep 17 00:00:00 2001 From: Brennan Ashton Date: Sun, 8 Nov 2020 15:00:33 -0800 Subject: [PATCH] Remove deprecated usage of set-env in workflows Signed-off-by: Brennan Ashton --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 55679a466..0d1e87158 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -145,7 +145,7 @@ jobs: command: docker pull docker.pkg.github.com/apache/incubator-nuttx-testing/nuttx-ci-linux - name: Export NuttX Repo SHA - run: echo "::set-env name=nuttx_sha::`git -C sources/nuttx rev-parse HEAD`" + run: echo "nuttx_sha=`git -C sources/nuttx rev-parse HEAD`" >> $GITHUB_ENV - name: Refresh Git Credentials uses: actions/checkout@v2 with: @@ -189,7 +189,7 @@ jobs: key: ${{ runner.os }}-tools-${{ hashFiles('./sources/testing/cibuild.sh') }} - name: Export NuttX Repo SHA - run: echo "::set-env name=nuttx_sha::`git -C sources/nuttx rev-parse HEAD`" + run: echo "nuttx_sha=`git -C sources/nuttx rev-parse HEAD`" >> $GITHUB_ENV - name: Refresh Git Credentials uses: actions/checkout@v2 with: