Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: actions/node-versions
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 14.17.6-1186790880
Choose a base ref
...
head repository: actions/node-versions
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 14.18.0-1283317191
Choose a head ref
  • 13 commits
  • 3 files changed
  • 3 contributors

Commits on Aug 31, 2021

  1. Update versions-manifest

    459680 committed Aug 31, 2021
    Copy the full SHA
    a72cfa7 View commit details
  2. Merge pull request #77 from actions/update-versions-manifest-file

    [versions-manifest] Update for release from 08/31/2021
    MaksimZhukov authored Aug 31, 2021
    Copy the full SHA
    b195064 View commit details

Commits on Sep 2, 2021

  1. Copy the full SHA
    84b6aae View commit details

Commits on Sep 8, 2021

  1. Update versions-manifest

    459680 committed Sep 8, 2021
    Copy the full SHA
    b2560ab View commit details
  2. Merge pull request #79 from actions/update-versions-manifest-file

    [versions-manifest] Update for release from 09/08/2021
    MaksimZhukov authored Sep 8, 2021
    Copy the full SHA
    833c6da View commit details

Commits on Sep 9, 2021

  1. Added token

    Yuriy-Kukushkin authored Sep 9, 2021
    Copy the full SHA
    3257340 View commit details

Commits on Sep 11, 2021

  1. Update versions-manifest

    459680 committed Sep 11, 2021
    Copy the full SHA
    acea7ca View commit details
  2. Merge pull request #80 from actions/update-versions-manifest-file

    [versions-manifest] Update for release from 09/11/2021
    MaksimZhukov authored Sep 11, 2021
    Copy the full SHA
    d78f09b View commit details

Commits on Sep 15, 2021

  1. Updated submodule

    Yuriy-Kukushkin committed Sep 15, 2021
    Copy the full SHA
    09f8ea5 View commit details
  2. Updated event

    Yuriy-Kukushkin authored Sep 15, 2021
    Copy the full SHA
    2200e9f View commit details
  3. Merge pull request #78 from Yuriy-Kukushkin/yk/add-workflow

    Move manifest validation pipeline from Azure DevOps
    MaksimZhukov authored Sep 15, 2021
    Copy the full SHA
    577e22b View commit details

Commits on Sep 23, 2021

  1. Update versions-manifest

    459680 committed Sep 23, 2021
    Copy the full SHA
    58c3d40 View commit details
  2. Merge pull request #81 from actions/update-versions-manifest-file

    [versions-manifest] Update for release from 09/23/2021
    MaksimZhukov authored Sep 23, 2021
    Copy the full SHA
    aa33d26 View commit details
Showing with 175 additions and 1 deletion.
  1. +47 −0 .github/workflows/validate-manifest.yml
  2. +1 −1 helpers
  3. +127 −0 versions-manifest.json
47 changes: 47 additions & 0 deletions .github/workflows/validate-manifest.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 1 addition & 1 deletion helpers
127 changes: 127 additions & 0 deletions versions-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,79 @@
[
{
"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,
@@ -324,6 +399,32 @@
}
]
},
{
"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,
@@ -1180,6 +1281,32 @@
}
]
},
{
"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,