📝 #1045 update using the set-output command is deprecated

This commit is contained in:
SIGUI Kessé Emmanuel 2022-12-26 07:12:18 +01:00
parent 60c7666709
commit d70353d8a4
2 changed files with 5 additions and 5 deletions

View file

@ -145,7 +145,7 @@ Additionally, you can use arbitrary command output in a cache key, such as a dat
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")"
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
shell: bash
- uses: actions/cache@v3