Skip to content

Commit e05ad0e

Browse files
committed
fix(github actions): node minimum version bump
Bumping node minimum version to >=20
1 parent 94064d2 commit e05ad0e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
# Initializes the CodeQL tools for scanning.
4040
- name: Initialize CodeQL
41-
uses: github/codeql-action/init@v1
41+
uses: github/codeql-action/init@v2
4242
with:
4343
languages: ${{ matrix.language }}
4444

@@ -59,4 +59,4 @@ jobs:
5959
# make release
6060

6161
- name: Perform CodeQL Analysis
62-
uses: github/codeql-action/analyze@v1
62+
uses: github/codeql-action/analyze@v2

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [18.x, 20.x, 21.x]
15+
node-version: [20.x, 21.x]
1616

1717
runs-on: ubuntu-latest
1818

.github/workflows/report-coverage.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Use Node.js 18.x
17+
- name: Use Node.js 20.x
1818
uses: actions/setup-node@v1
1919
with:
20-
node-version: 18.x
20+
node-version: 20.x
2121
- name: Install Yarn
2222
run: npm install -g yarn
2323
- name: Get yarn cache directory path

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,6 @@
125125
"url": "https://opencollective.com/polished"
126126
},
127127
"engines": {
128-
"node": ">=18"
128+
"node": ">=20"
129129
}
130130
}

0 commit comments

Comments
 (0)