Skip to content

Commit b3648bb

Browse files
committed
Replace set-output with GITHUB_OUTPUT
1 parent 2b5e91e commit b3648bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
persist-credentials: false
2424

2525
- id: build
26-
run: echo "::set-output name=hash::${{ hashFiles('assets/**', 'content/**', 'layouts/**', 'static/**', '**/package.json', '**/package-lock.json') }}"
26+
run: echo "hash=${{ hashFiles('assets/**', 'content/**', 'layouts/**', 'static/**', '**/package.json', '**/package-lock.json') }}" >> "GITHUB_OUTPUT"
2727

2828
- id: node-modules
29-
run: echo "::set-output name=hash::${{ hashFiles('**/package-lock.json') }}"
29+
run: echo "hash=${{ hashFiles('**/package-lock.json') }}" >> "GITHUB_OUTPUT"
3030

3131
test-lint:
3232
name: Test – Lint

0 commit comments

Comments
 (0)