Skip to content

Commit

Permalink
change set-output to use GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
PLM1995 committed Nov 17, 2024
1 parent b98ed73 commit 6ac14e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

- name: Get Yarn Cache Directory
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Load Yarn Cache
uses: actions/cache@v4
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:

- name: Get Yarn Cache Directory
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Load Yarn Cache
uses: actions/cache@v4
Expand Down

0 comments on commit 6ac14e8

Please sign in to comment.