Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
fix: remove deprecated set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
maggie44 committed Oct 14, 2022
1 parent 9ee79af commit 8f533db
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
lfs: true
fetch-depth: 0

- id: "yarn-cache"
run: echo "::set-output name=dir::$(yarn cache dir)"
- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/[email protected]"
with:
path: ${{ steps.yarn-cache.outputs.dir }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
lfs: true
fetch-depth: 0

- id: "yarn-cache"
run: echo "::set-output name=dir::$(yarn cache dir)"
- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/[email protected]"
with:
path: ${{ steps.yarn-cache.outputs.dir }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
lfs: true
fetch-depth: 0

- id: "yarn-cache"
run: echo "::set-output name=dir::$(yarn cache dir)"
- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/[email protected]"
with:
path: ${{ steps.yarn-cache.outputs.dir }}
Expand Down

0 comments on commit 8f533db

Please sign in to comment.