This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push: new 0d9579e Remove deprecated usage of set-env in workflows 0d9579e is described below commit 0d9579e21c873f4c666d59d12bf36e3b3d8057e7 Author: Brennan Ashton <bash...@brennanashton.com> AuthorDate: Sun Nov 8 15:00:33 2020 -0800 Remove deprecated usage of set-env in workflows Signed-off-by: Brennan Ashton <bash...@brennanashton.com> --- .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 55679a4..0d1e871 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: