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/
This commit is contained in:
Brennan Ashton 2023-05-15 22:17:26 -07:00 committed by Xiang Xiao
parent 9a654b658e
commit 6417ca79ad
1 changed files with 2 additions and 2 deletions

View File

@ -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