Compare commits

...

26 Commits

Author SHA1 Message Date
MaksimZhukov
833c6da64b Merge pull request #79 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 09/08/2021
2021-09-08 11:41:37 +03:00
Service account
b2560ab6d9 Update versions-manifest 2021-09-08 06:34:29 +00:00
MaksimZhukov
b195064d9c Merge pull request #77 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 08/31/2021
2021-08-31 18:47:14 +03:00
Service account
a72cfa7a7c Update versions-manifest 2021-08-31 15:46:05 +00:00
MaksimZhukov
63fc200ef6 Merge pull request #76 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 08/26/2021
2021-08-26 12:52:09 +03:00
Service account
ad4714dee5 Update versions-manifest 2021-08-26 09:49:17 +00:00
MaksimZhukov
0287ac915c Merge pull request #75 from nikita-bykov/move-get-node-versions
Move get-node-versions pipeline from Azure DevOps
2021-08-26 12:43:40 +03:00
Nikita Bykov
5c5f144d08 Update helpers 2021-08-26 12:35:40 +03:00
Nikita Bykov
6e415f531b Update Send Slack notification step to send a custom message 2021-08-25 15:32:15 +03:00
Nikita Bykov
5a83490d4f Move get-node-versions pipeline 2021-08-23 14:40:35 +03:00
MaksimZhukov
e5e3b83d13 Merge pull request #74 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 08/18/2021
2021-08-18 09:46:51 +03:00
Service account
9405eaa89a Update versions-manifest 2021-08-18 06:40:05 +00:00
MaksimZhukov
947a3202c2 Merge pull request #73 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 08/12/2021
2021-08-12 10:47:34 +03:00
Service account
5edc6dfe71 Update versions-manifest 2021-08-12 07:02:26 +00:00
MaksimZhukov
c54f68be31 Merge pull request #72 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 08/03/2021
2021-08-03 11:35:47 +03:00
Service account
dcd9e83d63 Update versions-manifest 2021-08-03 08:34:24 +00:00
MaksimZhukov
e530a1172f Merge pull request #71 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 07/30/2021
2021-07-30 10:32:53 +03:00
Service account
ee57453268 Update versions-manifest 2021-07-30 07:29:57 +00:00
MaksimZhukov
c0fad79083 Merge pull request #69 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 07/14/2021
2021-07-14 13:27:13 +03:00
Service account
484fa88a69 Update versions-manifest 2021-07-14 10:04:33 +00:00
MaksimZhukov
8c866dde54 Merge pull request #68 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 07/06/2021
2021-07-06 12:11:28 +03:00
Service account
334a8d1394 Update versions-manifest 2021-07-06 09:01:41 +00:00
Alena Sviridenko
72210eed7d Merge pull request #67 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 07/05/2021
2021-07-05 19:52:57 +03:00
Service account
2b595e0a51 Update versions-manifest 2021-07-05 16:51:42 +00:00
Alena Sviridenko
7ac82af1b6 Merge pull request #65 from actions/update-versions-manifest-file 2021-07-02 08:50:21 +03:00
Service account
6d939f1dbe Update versions-manifest 2021-07-01 20:33:39 +00:00
3 changed files with 583 additions and 1 deletions

97
.github/workflows/get-node-versions.yml vendored Normal file
View File

@@ -0,0 +1,97 @@
name: Get Node versions
on:
schedule:
- cron: '0 3,15 * * *'
workflow_dispatch:
env:
TOOL_NAME: "Node"
defaults:
run:
shell: pwsh
jobs:
find_new_versions:
name: Find new versions
runs-on: ubuntu-latest
outputs:
versions_output: ${{ steps.Get_new_versions.outputs.TOOL_VERSIONS }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- id: Get_new_versions
name: Get new versions
run: ./helpers/get-new-tool-versions/get-new-tool-versions.ps1 -ToolName ${{ env.TOOL_NAME }}
check_new_versions:
name: Check new versions
runs-on: ubuntu-latest
needs: find_new_versions
env:
TOOL_VERSIONS: ${{needs.find_new_versions.outputs.versions_output}}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Check Versions
if: success() && env.TOOL_VERSIONS == ''
run: |
Write-Host "No new versions were found"
Import-Module "./helpers/github/github-api.psm1"
$gitHubApi = Get-GitHubApi -RepositoryFullName "$env:GITHUB_REPOSITORY" `
-AccessToken "${{ secrets.PERSONAL_TOKEN }}"
$gitHubApi.CancelWorkflow("$env:GITHUB_RUN_ID")
Start-Sleep -Seconds 60
- name: Send Slack notification
run: |
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
$message = "The following versions of '${{ env.TOOL_NAME }}' are available to upload: ${{ env.TOOL_VERSIONS }}\nLink to the pipeline: $pipelineUrl"
./helpers/get-new-tool-versions/send-slack-notification.ps1 -Url "${{ secrets.SLACK_CHANNEL_URL }}" `
-ToolName "${{ env.TOOL_NAME }}" `
-ImageUrl "https://nodejs.org/static/images/logo-hexagon-card.png" `
-Text "$message"
trigger_builds:
name: Trigger builds
runs-on: ubuntu-latest
needs: [find_new_versions, check_new_versions]
env:
TOOL_VERSIONS: ${{needs.find_new_versions.outputs.versions_output}}
environment: Get Available Tools Versions - Publishing Approval
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Trigger "Build Node packages" workflow
run:
./helpers/github/run-ci-builds.ps1 -RepositoryFullName "$env:GITHUB_REPOSITORY" `
-AccessToken "${{ secrets.PERSONAL_TOKEN }}" `
-WorkflowFileName "build-node-packages.yml" `
-WorkflowDispatchRef "main" `
-ToolVersions "${{ env.TOOL_VERSIONS }}" `
-PublishReleases "true"
check_build:
name: Check build for failures
runs-on: ubuntu-latest
needs: [find_new_versions, check_new_versions, trigger_builds]
if: failure()
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Send Slack notification if build fails
run: |
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
$message = "The build of the '${{ env.TOOL_NAME }}' detection pipeline failed :progress-error:\nLink to the pipeline: $pipelineUrl"
./helpers/get-new-tool-versions/send-slack-notification.ps1 -Url "${{ secrets.SLACK_CHANNEL_URL }}" `
-ToolName "${{ env.TOOL_NAME }}" `
-Text "$message" `
-ImageUrl "https://nodejs.org/static/images/logo-hexagon-card.png"

Submodule helpers updated: 46a901fa87...1eaa091b65

View File

@@ -1,4 +1,229 @@
[
{
"version": "16.9.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.9.0-1212244385",
"files": [
{
"filename": "node-16.9.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.9.0-1212244385/node-16.9.0-darwin-x64.tar.gz"
},
{
"filename": "node-16.9.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.9.0-1212244385/node-16.9.0-linux-x64.tar.gz"
},
{
"filename": "node-16.9.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.9.0-1212244385/node-16.9.0-win32-x64.7z"
}
]
},
{
"version": "16.8.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.8.0-1169919626",
"files": [
{
"filename": "node-16.8.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.8.0-1169919626/node-16.8.0-darwin-x64.tar.gz"
},
{
"filename": "node-16.8.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.8.0-1169919626/node-16.8.0-linux-x64.tar.gz"
},
{
"filename": "node-16.8.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.8.0-1169919626/node-16.8.0-win32-x64.7z"
}
]
},
{
"version": "16.7.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.7.0-1142094056",
"files": [
{
"filename": "node-16.7.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.7.0-1142094056/node-16.7.0-darwin-x64.tar.gz"
},
{
"filename": "node-16.7.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.7.0-1142094056/node-16.7.0-linux-x64.tar.gz"
},
{
"filename": "node-16.7.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.7.0-1142094056/node-16.7.0-win32-x64.7z"
}
]
},
{
"version": "16.6.2",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.6.2-1122930057",
"files": [
{
"filename": "node-16.6.2-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.2-1122930057/node-16.6.2-darwin-x64.tar.gz"
},
{
"filename": "node-16.6.2-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.2-1122930057/node-16.6.2-linux-x64.tar.gz"
},
{
"filename": "node-16.6.2-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.2-1122930057/node-16.6.2-win32-x64.7z"
}
]
},
{
"version": "16.6.1",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.6.1-1093240690",
"files": [
{
"filename": "node-16.6.1-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.1-1093240690/node-16.6.1-darwin-x64.tar.gz"
},
{
"filename": "node-16.6.1-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.1-1093240690/node-16.6.1-linux-x64.tar.gz"
},
{
"filename": "node-16.6.1-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.1-1093240690/node-16.6.1-win32-x64.7z"
}
]
},
{
"version": "16.6.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.6.0-1081405875",
"files": [
{
"filename": "node-16.6.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.0-1081405875/node-16.6.0-darwin-x64.tar.gz"
},
{
"filename": "node-16.6.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.0-1081405875/node-16.6.0-linux-x64.tar.gz"
},
{
"filename": "node-16.6.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.6.0-1081405875/node-16.6.0-win32-x64.7z"
}
]
},
{
"version": "16.5.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.5.0-1029814944",
"files": [
{
"filename": "node-16.5.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.5.0-1029814944/node-16.5.0-darwin-x64.tar.gz"
},
{
"filename": "node-16.5.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.5.0-1029814944/node-16.5.0-linux-x64.tar.gz"
},
{
"filename": "node-16.5.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.5.0-1029814944/node-16.5.0-win32-x64.7z"
}
]
},
{
"version": "16.4.2",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.4.2-1003778947",
"files": [
{
"filename": "node-16.4.2-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.4.2-1003778947/node-16.4.2-darwin-x64.tar.gz"
},
{
"filename": "node-16.4.2-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.4.2-1003778947/node-16.4.2-linux-x64.tar.gz"
},
{
"filename": "node-16.4.2-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.4.2-1003778947/node-16.4.2-win32-x64.7z"
}
]
},
{
"version": "16.4.1",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/16.4.1-992803039",
"files": [
{
"filename": "node-16.4.1-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/16.4.1-992803039/node-16.4.1-darwin-x64.tar.gz"
},
{
"filename": "node-16.4.1-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/16.4.1-992803039/node-16.4.1-linux-x64.tar.gz"
},
{
"filename": "node-16.4.1-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/16.4.1-992803039/node-16.4.1-win32-x64.7z"
}
]
},
{
"version": "16.4.0",
"stable": true,
@@ -124,6 +349,136 @@
}
]
},
{
"version": "14.17.6",
"stable": true,
"lts": "Fermium",
"release_url": "https://github.com/actions/node-versions/releases/tag/14.17.6-1186790880",
"files": [
{
"filename": "node-14.17.6-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.6-1186790880/node-14.17.6-darwin-x64.tar.gz"
},
{
"filename": "node-14.17.6-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.6-1186790880/node-14.17.6-linux-x64.tar.gz"
},
{
"filename": "node-14.17.6-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.6-1186790880/node-14.17.6-win32-x64.7z"
}
]
},
{
"version": "14.17.5",
"stable": true,
"lts": "Fermium",
"release_url": "https://github.com/actions/node-versions/releases/tag/14.17.5-1122930359",
"files": [
{
"filename": "node-14.17.5-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.5-1122930359/node-14.17.5-darwin-x64.tar.gz"
},
{
"filename": "node-14.17.5-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.5-1122930359/node-14.17.5-linux-x64.tar.gz"
},
{
"filename": "node-14.17.5-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.5-1122930359/node-14.17.5-win32-x64.7z"
}
]
},
{
"version": "14.17.4",
"stable": true,
"lts": "Fermium",
"release_url": "https://github.com/actions/node-versions/releases/tag/14.17.4-1081406257",
"files": [
{
"filename": "node-14.17.4-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.4-1081406257/node-14.17.4-darwin-x64.tar.gz"
},
{
"filename": "node-14.17.4-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.4-1081406257/node-14.17.4-linux-x64.tar.gz"
},
{
"filename": "node-14.17.4-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.4-1081406257/node-14.17.4-win32-x64.7z"
}
]
},
{
"version": "14.17.3",
"stable": true,
"lts": "Fermium",
"release_url": "https://github.com/actions/node-versions/releases/tag/14.17.3-1001809597",
"files": [
{
"filename": "node-14.17.3-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.3-1001809597/node-14.17.3-darwin-x64.tar.gz"
},
{
"filename": "node-14.17.3-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.3-1001809597/node-14.17.3-linux-x64.tar.gz"
},
{
"filename": "node-14.17.3-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.3-1001809597/node-14.17.3-win32-x64.7z"
}
]
},
{
"version": "14.17.2",
"stable": true,
"lts": "Fermium",
"release_url": "https://github.com/actions/node-versions/releases/tag/14.17.2-992803584",
"files": [
{
"filename": "node-14.17.2-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.2-992803584/node-14.17.2-darwin-x64.tar.gz"
},
{
"filename": "node-14.17.2-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.2-992803584/node-14.17.2-linux-x64.tar.gz"
},
{
"filename": "node-14.17.2-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.2-992803584/node-14.17.2-win32-x64.7z"
}
]
},
{
"version": "14.17.1",
"stable": true,
@@ -876,6 +1231,136 @@
}
]
},
{
"version": "12.22.6",
"stable": true,
"lts": "Erbium",
"release_url": "https://github.com/actions/node-versions/releases/tag/12.22.6-1186707475",
"files": [
{
"filename": "node-12.22.6-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.6-1186707475/node-12.22.6-darwin-x64.tar.gz"
},
{
"filename": "node-12.22.6-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.6-1186707475/node-12.22.6-linux-x64.tar.gz"
},
{
"filename": "node-12.22.6-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.6-1186707475/node-12.22.6-win32-x64.7z"
}
]
},
{
"version": "12.22.5",
"stable": true,
"lts": "Erbium",
"release_url": "https://github.com/actions/node-versions/releases/tag/12.22.5-1122930631",
"files": [
{
"filename": "node-12.22.5-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.5-1122930631/node-12.22.5-darwin-x64.tar.gz"
},
{
"filename": "node-12.22.5-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.5-1122930631/node-12.22.5-linux-x64.tar.gz"
},
{
"filename": "node-12.22.5-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.5-1122930631/node-12.22.5-win32-x64.7z"
}
]
},
{
"version": "12.22.4",
"stable": true,
"lts": "Erbium",
"release_url": "https://github.com/actions/node-versions/releases/tag/12.22.4-1081406675",
"files": [
{
"filename": "node-12.22.4-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.4-1081406675/node-12.22.4-darwin-x64.tar.gz"
},
{
"filename": "node-12.22.4-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.4-1081406675/node-12.22.4-linux-x64.tar.gz"
},
{
"filename": "node-12.22.4-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.4-1081406675/node-12.22.4-win32-x64.7z"
}
]
},
{
"version": "12.22.3",
"stable": true,
"lts": "Erbium",
"release_url": "https://github.com/actions/node-versions/releases/tag/12.22.3-1001810065",
"files": [
{
"filename": "node-12.22.3-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.3-1001810065/node-12.22.3-darwin-x64.tar.gz"
},
{
"filename": "node-12.22.3-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.3-1001810065/node-12.22.3-linux-x64.tar.gz"
},
{
"filename": "node-12.22.3-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.3-1001810065/node-12.22.3-win32-x64.7z"
}
]
},
{
"version": "12.22.2",
"stable": true,
"lts": "Erbium",
"release_url": "https://github.com/actions/node-versions/releases/tag/12.22.2-992803951",
"files": [
{
"filename": "node-12.22.2-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.2-992803951/node-12.22.2-darwin-x64.tar.gz"
},
{
"filename": "node-12.22.2-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.2-992803951/node-12.22.2-linux-x64.tar.gz"
},
{
"filename": "node-12.22.2-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.2-992803951/node-12.22.2-win32-x64.7z"
}
]
},
{
"version": "12.22.1",
"stable": true,