Skip to content

Commit 052b831

Browse files
authored
Merge pull request #23 from aboutbits/engines-update
Update engines
2 parents 06d690b + 5ef29a9 commit 052b831

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ name: Test Package
33
on: push
44

55
env:
6-
NODE_VERSION: 16
6+
NODE_VERSION: 20
77

88
jobs:
99
test:
1010
runs-on: ubuntu-22.04
1111
timeout-minutes: 15
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: aboutbits/github-actions-node/setup-and-install@v1
13+
- uses: actions/checkout@v4
14+
- uses: aboutbits/github-actions-node/setup-and-install@v2
1515
with:
1616
node-version: ${{ env.NODE_VERSION }}
1717
- run: npm run lint

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66
- 'v*'
77

88
env:
9-
NODE_VERSION: 16
9+
NODE_VERSION: 20
1010

1111
jobs:
1212
build:
1313
runs-on: ubuntu-22.04
1414
timeout-minutes: 10
1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/github-script@v6
16+
- uses: actions/checkout@v4
17+
- uses: actions/github-script@v7
1818
with:
1919
script: |
2020
github.rest.repos.createRelease({
@@ -23,7 +23,7 @@ jobs:
2323
tag_name: '${{ github.ref }}',
2424
name: 'Release ${{ github.ref_name }}'
2525
})
26-
- uses: aboutbits/github-actions-node/setup-and-install@v1
26+
- uses: aboutbits/github-actions-node/setup-and-install@v2
2727
with:
2828
node-version: ${{ env.NODE_VERSION }}
2929
registry-url: 'https://registry.npmjs.org'

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"description": "Material design icon components for React",
55
"main": "dist/",
66
"engines": {
7-
"npm": "^8",
8-
"node": ">=16 <19"
7+
"npm": ">=8",
8+
"node": ">=16"
99
},
1010
"scripts": {
1111
"build": "tsc",

0 commit comments

Comments
 (0)