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.git
The following commit(s) were added to refs/heads/master by this push: new 5d872e0 Remove depricated usage of set-env in GitHub 5d872e0 is described below commit 5d872e09e6b1fe9cf893adb21e34fb3755f987a2 Author: Brennan Ashton <bash...@brennanashton.com> AuthorDate: Sun Nov 8 14:56:08 2020 -0800 Remove depricated usage of set-env in GitHub 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 1760ec0..9e27f42 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -150,7 +150,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: Run builds uses: ./sources/testing/.github/actions/ci-container env: @@ -193,7 +193,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: Run Builds run: | echo "::add-matcher::sources/nuttx/.github/gcc.json"