replace deprecated set-output command in workflow.yml, README and the examples file

This commit is contained in:
Netanel Rabinowitz 2022-10-13 00:48:56 +03:00
parent a3f5edc237
commit f066901d82
3 changed files with 7 additions and 7 deletions

View file

@ -135,7 +135,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