Skip to content

Commit a37f186

Browse files
authored
GitHub Actions: Add Node.js 18 and drop 12
Node.js 12 is end-of-life. https://nodejs.org/en/about/releases Python 3.6 is end-of-life. https://devguide.python.org/#status-of-python-branches
1 parent 1206a82 commit a37f186

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
fail-fast: false
99
max-parallel: 15
1010
matrix:
11-
node: [12.x, 14.x, 16.x]
12-
python: ["3.6", "3.8", "3.10"]
11+
node: [14.x, 16.x, 18.x]
12+
python: ["3.7", "3.8", "3.10"]
1313
os: [macos-latest, ubuntu-latest, windows-latest]
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
- name: Use Node.js ${{ matrix.node }}
1919
uses: actions/setup-node@v3
2020
with:

0 commit comments

Comments
 (0)