Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

Commit

Permalink
Update actions/setup-node action to v3 (#119)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <bot@renovateapp.com>
  • Loading branch information
renovate[bot] and renovate-bot committed Mar 1, 2022
1 parent c26e7a2 commit ec784dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/GHPages.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
- name: Install And Build
run: |+
npm install
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/NodeCI.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 12
- name: Install Packages
Expand All @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
Expand All @@ -41,7 +41,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Downgrade stylelint
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
- name: Install Packages
run: npm install
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/NpmPublish.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: checkout
uses: actions/checkout@v3
- name: setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
registry-url: 'https://registry.npmjs.org'
- name: Install Packages
Expand Down

0 comments on commit ec784dc

Please sign in to comment.