From 6417ca79ad91d09e87e1981842ebf32dc45c742f 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 7ad4eec56a..3c8cb591ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,8 +84,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