switch to newer method to set output in yarn cache step

see https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This commit is contained in:
Pascal Jufer 2023-01-15 20:25:23 +01:00
parent 5108c140af
commit 82bb017bc0

View file

@ -31,7 +31,7 @@ jobs:
- name: Get yarn cache directory path - name: Get yarn cache directory path
id: yarn-cache-dir-path id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)" run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Setup cache - name: Setup cache
uses: actions/cache@v3 uses: actions/cache@v3