Skip to content

Commit 3c53757

Browse files
committed
chore(ci): update to new github action outputs syntax
1 parent 3a97351 commit 3c53757

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/setup-node-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
uses: actions/checkout@v2
2424
- name: Save package-lock.json sha
2525
id: packageLockSha
26-
run: echo "##[set-output name=package_lock_sha;]${{ hashFiles('package-lock.json') }}"
26+
run: echo "package_lock_sha=${{ hashFiles('package-lock.json') }}" >> $GITHUB_OUTPUT
2727
- name: Get Node Version from .nvmrc
28-
run: echo ::set-output name=node_version::$(cat .nvmrc)
28+
run: echo "node_version=$(cat .nvmrc)" >> $GITHUB_OUTPUT
2929
id: nvm
3030
- name: Set up Node
3131
uses: actions/setup-node@v3

0 commit comments

Comments
 (0)