Compare commits

...

20 Commits

Author SHA1 Message Date
MaksimZhukov
e40f16e1e0 fix typo 2020-08-12 11:11:14 +03:00
MaksimZhukov
5c820ab88b Add logs 2020-08-12 11:08:17 +03:00
Maxim Lobanov
60042303e5 Merge pull request #29 from actions/v-mazhuk/update-modules
Update Git submodule
2020-07-30 14:22:56 +03:00
MaksimZhukov
690c39139f Update Git submodule 2020-07-30 12:47:21 +03:00
Maxim Lobanov
dbc462f6f0 Merge pull request #28 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 07/30/2020
2020-07-30 09:04:09 +03:00
Service account
2d85084834 Update versions-manifest based on build from 20200730.1 2020-07-30 05:59:25 +00:00
Maxim Lobanov
71dc6cf704 Merge pull request #27 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 07/23/2020
2020-07-23 08:54:11 +03:00
Service account
2275f3fe19 Update versions-manifest based on build from 20200723.1 2020-07-23 05:43:29 +00:00
Maxim Lobanov
deeaedc1f4 Merge pull request #26 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 07/22/2020
2020-07-22 11:40:33 +03:00
Service account
82819ecf50 Update versions-manifest based on build from 20200722.2 2020-07-22 08:30:47 +00:00
Maxim Lobanov
73c7229556 Update README.md 2020-07-15 13:32:45 +03:00
Maxim Lobanov
a9761d076d Merge pull request #24 from actions/v-malob/switch-master-to-main
Switch default branch from "master" to "main"
2020-07-14 16:41:07 +03:00
Maxim Lobanov
63f56e381c Update .gitmodules 2020-07-14 16:24:18 +03:00
Maxim Lobanov
9825d4703f update submodule 2020-07-14 14:52:22 +03:00
Maxim Lobanov
376bb1b4eb Merge pull request #22 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 07/07/2020
2020-07-07 14:18:06 +03:00
Service account
f675396c66 Update versions-manifest based on build from 20200707.2 2020-07-07 10:07:35 +00:00
Maxim Lobanov
155e54b53a Merge pull request #21 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 06/17/2020
2020-06-17 20:51:16 +03:00
Service account
46502ad44b Update versions-manifest based on build from 20200617.1 2020-06-17 17:35:14 +00:00
Maxim Lobanov
ac6a66a1ac Merge pull request #20 from actions/update-versions-manifest-file
Upload Node.JS 14.4.0, 12.18.0, 10.21.0
2020-06-03 20:02:37 +03:00
Service account
ae3fa7b514 Update versions-manifest based on build from 20200603.3 2020-06-03 17:01:01 +00:00
6 changed files with 270 additions and 17 deletions

2
.gitmodules vendored
View File

@@ -1,4 +1,4 @@
[submodule "helpers"]
path = helpers
url = https://github.com/actions/versions-package-tools
branch = master
branch = main

View File

@@ -6,10 +6,10 @@ The file [versions-manifest.json](./versions-manifest.json) contains the list of
**Status**: Currently under development and in use for beta and preview actions. This repo is undergoing rapid changes.
Latest of LTS versions will be installed on the [virtual-environments](https://github.com/actions/virtual-environments) images. Other versions will be pulled JIT using the [`setup-node`](https://github.com/actions/setup-node) action.
Latest of LTS versions will be installed on the [virtual-environments](https://github.com/actions/virtual-environments) images. Other versions will be pulled JIT using the [`setup-node`](https://github.com/actions/setup-node) action.
## Adding new versions
We are trying to prepare packages for new versions of Node.js as soon as they are released. Please open an issue if any versions are missing.
We are trying to prepare packages for new versions of Node.js as soon as they are released. Please open an issue in [actions/virtual-environments](https://github.com/actions/virtual-environments) if any versions are missing.
## Contribution
Contributions are welcome! See [Contributor's Guide](./CONTRIBUTING.md) for more details about contribution process and code structure

View File

@@ -4,7 +4,7 @@ pr:
autoCancel: true
branches:
include:
- master
- main
paths:
exclude:
- versions-manifest.json

View File

@@ -48,6 +48,9 @@ jobs:
Write-Host "We need it because log of previous step 'Use Node' is not available here yet."
Write-Host "In testing step (Node.Tests.ps1) we analyze build log of 'Use Node' task"
Write-Host "to determine if Node.js version was consumed from cache and was downloaded"
foreach ($process in Get-Process) {
Write-Host "Active process name: $($process.ProcessName)"
}
- task: PowerShell@2
displayName: 'Run tests'
inputs:

Submodule helpers updated: d8c3ce72ee...68072bedef

View File

@@ -1,4 +1,104 @@
[
{
"version": "14.7.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/14.7.0-20200730.1",
"files": [
{
"filename": "node-14.7.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.7.0-20200730.1/node-14.7.0-darwin-x64.tar.gz"
},
{
"filename": "node-14.7.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.7.0-20200730.1/node-14.7.0-linux-x64.tar.gz"
},
{
"filename": "node-14.7.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.7.0-20200730.1/node-14.7.0-win32-x64.7z"
}
]
},
{
"version": "14.6.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/14.6.0-20200722.1",
"files": [
{
"filename": "node-14.6.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.6.0-20200722.1/node-14.6.0-darwin-x64.tar.gz"
},
{
"filename": "node-14.6.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.6.0-20200722.1/node-14.6.0-linux-x64.tar.gz"
},
{
"filename": "node-14.6.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.6.0-20200722.1/node-14.6.0-win32-x64.7z"
}
]
},
{
"version": "14.5.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/14.5.0-20200707.1",
"files": [
{
"filename": "node-14.5.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.5.0-20200707.1/node-14.5.0-darwin-x64.tar.gz"
},
{
"filename": "node-14.5.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.5.0-20200707.1/node-14.5.0-linux-x64.tar.gz"
},
{
"filename": "node-14.5.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.5.0-20200707.1/node-14.5.0-win32-x64.7z"
}
]
},
{
"version": "14.4.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/14.4.0-20200603.1",
"files": [
{
"filename": "node-14.4.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.4.0-20200603.1/node-14.4.0-darwin-x64.tar.gz"
},
{
"filename": "node-14.4.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.4.0-20200603.1/node-14.4.0-linux-x64.tar.gz"
},
{
"filename": "node-14.4.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.4.0-20200603.1/node-14.4.0-win32-x64.7z"
}
]
},
{
"version": "14.3.0",
"stable": true,
@@ -149,6 +249,106 @@
}
]
},
{
"version": "12.18.3",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/12.18.3-20200723.1",
"files": [
{
"filename": "node-12.18.3-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.3-20200723.1/node-12.18.3-darwin-x64.tar.gz"
},
{
"filename": "node-12.18.3-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.3-20200723.1/node-12.18.3-linux-x64.tar.gz"
},
{
"filename": "node-12.18.3-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.3-20200723.1/node-12.18.3-win32-x64.7z"
}
]
},
{
"version": "12.18.2",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/12.18.2-20200707.2",
"files": [
{
"filename": "node-12.18.2-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.2-20200707.2/node-12.18.2-darwin-x64.tar.gz"
},
{
"filename": "node-12.18.2-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.2-20200707.2/node-12.18.2-linux-x64.tar.gz"
},
{
"filename": "node-12.18.2-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.2-20200707.2/node-12.18.2-win32-x64.7z"
}
]
},
{
"version": "12.18.1",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/12.18.1-20200617.1",
"files": [
{
"filename": "node-12.18.1-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.1-20200617.1/node-12.18.1-darwin-x64.tar.gz"
},
{
"filename": "node-12.18.1-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.1-20200617.1/node-12.18.1-linux-x64.tar.gz"
},
{
"filename": "node-12.18.1-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.1-20200617.1/node-12.18.1-win32-x64.7z"
}
]
},
{
"version": "12.18.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/12.18.0-20200603.2",
"files": [
{
"filename": "node-12.18.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.0-20200603.2/node-12.18.0-darwin-x64.tar.gz"
},
{
"filename": "node-12.18.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.0-20200603.2/node-12.18.0-linux-x64.tar.gz"
},
{
"filename": "node-12.18.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.0-20200603.2/node-12.18.0-win32-x64.7z"
}
]
},
{
"version": "12.17.0",
"stable": true,
@@ -824,6 +1024,56 @@
}
]
},
{
"version": "10.22.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/10.22.0-20200722.2",
"files": [
{
"filename": "node-10.22.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/10.22.0-20200722.2/node-10.22.0-darwin-x64.tar.gz"
},
{
"filename": "node-10.22.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/10.22.0-20200722.2/node-10.22.0-linux-x64.tar.gz"
},
{
"filename": "node-10.22.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/10.22.0-20200722.2/node-10.22.0-win32-x64.7z"
}
]
},
{
"version": "10.21.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/10.21.0-20200603.3",
"files": [
{
"filename": "node-10.21.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/10.21.0-20200603.3/node-10.21.0-darwin-x64.tar.gz"
},
{
"filename": "node-10.21.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/10.21.0-20200603.3/node-10.21.0-linux-x64.tar.gz"
},
{
"filename": "node-10.21.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/10.21.0-20200603.3/node-10.21.0-win32-x64.7z"
}
]
},
{
"version": "10.20.1",
"stable": true,
@@ -2252,25 +2502,25 @@
{
"version": "8.6.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/8.6.0-20200507.13",
"release_url": "https://github.com/actions/node-versions/releases/tag/8.6.0-20200529.14",
"files": [
{
"filename": "node-8.6.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/8.6.0-20200507.13/node-8.6.0-darwin-x64.tar.gz"
"download_url": "https://github.com/actions/node-versions/releases/download/8.6.0-20200529.14/node-8.6.0-darwin-x64.tar.gz"
},
{
"filename": "node-8.6.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/8.6.0-20200507.13/node-8.6.0-linux-x64.tar.gz"
"download_url": "https://github.com/actions/node-versions/releases/download/8.6.0-20200529.14/node-8.6.0-linux-x64.tar.gz"
},
{
"filename": "node-8.6.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/8.6.0-20200507.13/node-8.6.0-win32-x64.7z"
"download_url": "https://github.com/actions/node-versions/releases/download/8.6.0-20200529.14/node-8.6.0-win32-x64.7z"
}
]
},
@@ -2452,25 +2702,25 @@
{
"version": "8.1.2",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/8.1.2-20200507.5",
"release_url": "https://github.com/actions/node-versions/releases/tag/8.1.2-20200529.6",
"files": [
{
"filename": "node-8.1.2-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/8.1.2-20200507.5/node-8.1.2-darwin-x64.tar.gz"
"download_url": "https://github.com/actions/node-versions/releases/download/8.1.2-20200529.6/node-8.1.2-darwin-x64.tar.gz"
},
{
"filename": "node-8.1.2-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/8.1.2-20200507.5/node-8.1.2-linux-x64.tar.gz"
"download_url": "https://github.com/actions/node-versions/releases/download/8.1.2-20200529.6/node-8.1.2-linux-x64.tar.gz"
},
{
"filename": "node-8.1.2-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/8.1.2-20200507.5/node-8.1.2-win32-x64.7z"
"download_url": "https://github.com/actions/node-versions/releases/download/8.1.2-20200529.6/node-8.1.2-win32-x64.7z"
}
]
},
@@ -2552,25 +2802,25 @@
{
"version": "6.17.1",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/6.17.1-20200507.1",
"release_url": "https://github.com/actions/node-versions/releases/tag/6.17.1-20200529.2",
"files": [
{
"filename": "node-6.17.1-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/6.17.1-20200507.1/node-6.17.1-darwin-x64.tar.gz"
"download_url": "https://github.com/actions/node-versions/releases/download/6.17.1-20200529.2/node-6.17.1-darwin-x64.tar.gz"
},
{
"filename": "node-6.17.1-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/6.17.1-20200507.1/node-6.17.1-linux-x64.tar.gz"
"download_url": "https://github.com/actions/node-versions/releases/download/6.17.1-20200529.2/node-6.17.1-linux-x64.tar.gz"
},
{
"filename": "node-6.17.1-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/6.17.1-20200507.1/node-6.17.1-win32-x64.7z"
"download_url": "https://github.com/actions/node-versions/releases/download/6.17.1-20200529.2/node-6.17.1-win32-x64.7z"
}
]
}