Skip to content

Commit

Permalink
chore(ci): replace deprecated set-output directive
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxpiper committed Mar 9, 2023
1 parent 42a3859 commit 0946c84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-and-ship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
Expand Down

0 comments on commit 0946c84

Please sign in to comment.