Skip to content

Commit 275d94f

Browse files
renovate[bot]renovate-botascorbic
authored
chore(deps): update actions/setup-node action to v3 (#301)
Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Matt Kane <[email protected]>
1 parent c8d329f commit 275d94f

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v2
12+
- uses: actions/setup-node@v3
1313
with:
1414
node-version: '*'
1515
cache: 'npm'

.github/workflows/release-please.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,26 @@ jobs:
1717
with:
1818
token: ${{ steps.get-token.outputs.token }}
1919
command: manifest
20-
- uses: actions/checkout@v3
21-
if: ${{ steps.release.outputs.release_created }}
20+
- uses: actions/checkout@v2
21+
if: ${{ steps.release.outputs.releases_created }}
2222
- uses: actions/setup-node@v2
2323
with:
2424
node-version: '*'
2525
cache: 'npm'
2626
check-latest: true
2727
registry-url: 'https://registry.npmjs.org'
28-
if: ${{ steps.release.outputs.release_created }}
28+
if: ${{ steps.release.outputs.releases_created }}
2929
- name: Install dependencies
3030
run: npm ci
31-
if: ${{ steps.release.outputs.release_created }}
31+
working-directory: plugin
32+
if: ${{ steps.release.outputs.releases_created }}
3233
- run: npm publish
33-
if: ${{ steps.release.outputs.release_created }}
34+
working-directory: plugin
35+
if: ${{ steps.release.outputs.releases_created }}
3436
env:
3537
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
3638
- uses: netlify/submit-build-plugin-action@v1
37-
if: ${{ steps.release.outputs.release_created }}
39+
if: ${{ steps.release.outputs.releases_created }}
3840
with:
3941
github-token: ${{ steps.get-token.outputs.token }}
42+
package-json-dir: plugin

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v3
2525
- name: Use Node.js ${{ matrix.node-version }}
26-
uses: actions/setup-node@v2
26+
uses: actions/setup-node@v3
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
check-latest: '*'

0 commit comments

Comments
 (0)