Compare commits
37 Commits
14.17.2-99
...
16.11.0-13
Author | SHA1 | Date | |
---|---|---|---|
|
285c046a12 | ||
|
d9cf0e3053 | ||
|
d86ab03024 | ||
|
ad9cb45c2a | ||
|
aa33d265c4 | ||
|
58c3d40bb8 | ||
|
577e22bee8 | ||
|
2200e9ff30 | ||
|
09f8ea5c48 | ||
|
d78f09bbe4 | ||
|
acea7cad3a | ||
|
3257340283 | ||
|
833c6da64b | ||
|
b2560ab6d9 | ||
|
84b6aaeb97 | ||
|
b195064d9c | ||
|
a72cfa7a7c | ||
|
63fc200ef6 | ||
|
ad4714dee5 | ||
|
0287ac915c | ||
|
5c5f144d08 | ||
|
6e415f531b | ||
|
5a83490d4f | ||
|
e5e3b83d13 | ||
|
9405eaa89a | ||
|
947a3202c2 | ||
|
5edc6dfe71 | ||
|
c54f68be31 | ||
|
dcd9e83d63 | ||
|
e530a1172f | ||
|
ee57453268 | ||
|
c0fad79083 | ||
|
484fa88a69 | ||
|
8c866dde54 | ||
|
334a8d1394 | ||
|
72210eed7d | ||
|
2b595e0a51 |
97
.github/workflows/get-node-versions.yml
vendored
Normal file
97
.github/workflows/get-node-versions.yml
vendored
Normal 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"
|
47
.github/workflows/validate-manifest.yml
vendored
Normal file
47
.github/workflows/validate-manifest.yml
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
name: Validate manifest
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 8,20 * * *'
|
||||
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'versions-manifest.json'
|
||||
env:
|
||||
TOOL_NAME: "Node"
|
||||
defaults:
|
||||
run:
|
||||
shell: pwsh
|
||||
|
||||
jobs:
|
||||
validation:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Validate node-versions manifest
|
||||
run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestUrl https://raw.githubusercontent.com/actions/node-versions/main/versions-manifest.json -AccessToken ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
check_build:
|
||||
name: Check validation for failures
|
||||
runs-on: ubuntu-latest
|
||||
needs: [validation]
|
||||
if: failure()
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Send Slack notification if validation fails
|
||||
run: |
|
||||
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
|
||||
$message = "The validation of node-versions manifest failed. \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"
|
2
helpers
2
helpers
Submodule helpers updated: 46a901fa87...e71d476320
@@ -1,26 +1,276 @@
|
||||
[
|
||||
{
|
||||
"version": "16.10.0",
|
||||
"stable": true,
|
||||
"release_url": "https://github.com/actions/node-versions/releases/tag/16.10.0-1264673745",
|
||||
"files": [
|
||||
{
|
||||
"filename": "node-16.10.0-darwin-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "darwin",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/16.10.0-1264673745/node-16.10.0-darwin-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "node-16.10.0-linux-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/16.10.0-1264673745/node-16.10.0-linux-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "node-16.10.0-win32-x64.7z",
|
||||
"arch": "x64",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/16.10.0-1264673745/node-16.10.0-win32-x64.7z"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "16.9.1",
|
||||
"stable": true,
|
||||
"release_url": "https://github.com/actions/node-versions/releases/tag/16.9.1-1224334450",
|
||||
"files": [
|
||||
{
|
||||
"filename": "node-16.9.1-darwin-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "darwin",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/16.9.1-1224334450/node-16.9.1-darwin-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "node-16.9.1-linux-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/16.9.1-1224334450/node-16.9.1-linux-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "node-16.9.1-win32-x64.7z",
|
||||
"arch": "x64",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/16.9.1-1224334450/node-16.9.1-win32-x64.7z"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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-991425998",
|
||||
"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-991425998/node-16.4.1-darwin-x64.tar.gz"
|
||||
"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-991425998/node-16.4.1-linux-x64.tar.gz"
|
||||
"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-991425998/node-16.4.1-win32-x64.7z"
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/16.4.1-992803039/node-16.4.1-win32-x64.7z"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -149,29 +399,159 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "14.18.0",
|
||||
"stable": true,
|
||||
"lts": "Fermium",
|
||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.18.0-1283317191",
|
||||
"files": [
|
||||
{
|
||||
"filename": "node-14.18.0-darwin-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "darwin",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.18.0-1283317191/node-14.18.0-darwin-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "node-14.18.0-linux-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.18.0-1283317191/node-14.18.0-linux-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "node-14.18.0-win32-x64.7z",
|
||||
"arch": "x64",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.18.0-1283317191/node-14.18.0-win32-x64.7z"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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-991426410",
|
||||
"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-991426410/node-14.17.2-darwin-x64.tar.gz"
|
||||
"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-991426410/node-14.17.2-linux-x64.tar.gz"
|
||||
"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-991426410/node-14.17.2-win32-x64.7z"
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.17.2-992803584/node-14.17.2-win32-x64.7z"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -927,29 +1307,133 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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-991426702",
|
||||
"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-991426702/node-12.22.2-darwin-x64.tar.gz"
|
||||
"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-991426702/node-12.22.2-linux-x64.tar.gz"
|
||||
"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-991426702/node-12.22.2-win32-x64.7z"
|
||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.22.2-992803951/node-12.22.2-win32-x64.7z"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
Reference in New Issue
Block a user