Skip to content

Commit 425ca24

Browse files
committed
Upgrade download and upload GitHub actions and re-enable older versions of node
1 parent 6667b1e commit 425ca24

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
strategy:
1515
matrix:
1616
node_version: [
17-
#10,
18-
#12,
19-
#14,
17+
10,
18+
12,
19+
14,
2020
20,
2121
]
2222
steps:

.github/workflows/release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Dump upload url to file
2323
run: echo '${{ steps.create_release.outputs.upload_url }}' > upload_url
2424
- name: Upload upload_url
25-
uses: actions/upload-artifact@v1
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: upload_url
2828
path: upload_url
@@ -37,9 +37,9 @@ jobs:
3737
'linux-x64',
3838
]
3939
pair: [
40-
#'node:10',
41-
#'node:12',
42-
#'node:14',
40+
'node:10',
41+
'node:12',
42+
'node:14',
4343
'node:20',
4444
]
4545
include:
@@ -49,15 +49,15 @@ jobs:
4949
host-os: 'ubuntu-latest'
5050
- platform: 'linux-x64'
5151
host-os: 'ubuntu-latest'
52-
#- pair: 'node:10'
53-
# language: 'node'
54-
# version: '10'
55-
#- pair: 'node:12'
56-
# language: 'node'
57-
# version: '12'
58-
#- pair: 'node:14'
59-
# language: 'node'
60-
# version: '14'
52+
- pair: 'node:10'
53+
language: 'node'
54+
version: '10'
55+
- pair: 'node:12'
56+
language: 'node'
57+
version: '12'
58+
- pair: 'node:14'
59+
language: 'node'
60+
version: '14'
6161
- pair: 'node:20'
6262
language: 'node'
6363
version: '20'
@@ -66,7 +66,7 @@ jobs:
6666

6767
steps:
6868
- name: Download upload_url
69-
uses: actions/download-artifact@v1
69+
uses: actions/download-artifact@v4
7070
with:
7171
name: upload_url
7272
- name: Set upload_url

0 commit comments

Comments
 (0)