Skip to content

Commit

Permalink
feat: replace depcrecared "::set-output" syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
zhusee2 committed Aug 18, 2023
1 parent 5ce5125 commit 26c8036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ runs:
# cache configs
- name: Output OS version
id: output-os-version
run: echo "::set-output name=version::`lsb_release -d -s`"
run: echo "version=`lsb_release -d -s`" >> $GITHUB_OUTPUT
shell: bash
- name: Output Node version
id: output-node-version
run: echo "::set-output name=version::`node -v`"
run: echo "version=`node -v`" >> $GITHUB_OUTPUT
shell: bash
- name: Cache monorepo node_modules
if: ${{ !fromJSON(inputs.skip-cache) && fromJSON(inputs.is-monorepo) }}
Expand Down

0 comments on commit 26c8036

Please sign in to comment.