Skip to content

Commit

Permalink
build: remove usage of set-output since its deprecated (#979)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtoison authored Feb 27, 2024
1 parent bff46f9 commit dc0ac9a
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'
cache: npm
- run: |
npm ci
Expand Down

0 comments on commit dc0ac9a

Please sign in to comment.