From 6655c99341dfa1afa14f8c9bd35fd72b39787841 Mon Sep 17 00:00:00 2001 From: Brennan Ashton Date: Mon, 15 May 2023 22:17:26 -0700 Subject: [PATCH] CI: set-output command is deprecated CI currently runs with the warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .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 9a1f7eae7..f59b02efa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,8 +80,8 @@ jobs: esac fi - echo ::set-output name=os_ref::$OS_REF - echo ::set-output name=apps_ref::$APPS_REF + echo "name=$OS_REF" >> $GITHUB_OUTPUT + echo "app_ref=$APPS_REF" >> $GITHUB_OUTPUT - name: Checkout nuttx repo uses: actions/checkout@v3