From 03a45f2d48d5f2cae9cd16f78b7b712eca1c7dbc Mon Sep 17 00:00:00 2001 From: Service account Date: Sat, 9 Oct 2021 07:38:46 +0000 Subject: [PATCH 1/3] Update versions-manifest --- versions-manifest.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/versions-manifest.json b/versions-manifest.json index 375a964..8d69dae 100644 --- a/versions-manifest.json +++ b/versions-manifest.json @@ -1,4 +1,29 @@ [ + { + "version": "16.11.0", + "stable": true, + "release_url": "https://github.com/actions/node-versions/releases/tag/16.11.0-1323031162", + "files": [ + { + "filename": "node-16.11.0-darwin-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://github.com/actions/node-versions/releases/download/16.11.0-1323031162/node-16.11.0-darwin-x64.tar.gz" + }, + { + "filename": "node-16.11.0-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://github.com/actions/node-versions/releases/download/16.11.0-1323031162/node-16.11.0-linux-x64.tar.gz" + }, + { + "filename": "node-16.11.0-win32-x64.7z", + "arch": "x64", + "platform": "win32", + "download_url": "https://github.com/actions/node-versions/releases/download/16.11.0-1323031162/node-16.11.0-win32-x64.7z" + } + ] + }, { "version": "16.10.0", "stable": true, -- 2.49.1 From 5026cafdf40788e462255b84709af7416b53a265 Mon Sep 17 00:00:00 2001 From: "Nikolai Frolov (Akvelon INC)" Date: Tue, 12 Oct 2021 19:44:23 +0300 Subject: [PATCH 2/3] Uptake of the latest changes for helpers submodule --- .github/workflows/validate-manifest.yml | 2 +- helpers | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-manifest.yml b/.github/workflows/validate-manifest.yml index 3d5ec7f..68efaad 100644 --- a/.github/workflows/validate-manifest.yml +++ b/.github/workflows/validate-manifest.yml @@ -25,7 +25,7 @@ jobs: 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 }} + run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestPath '.\versions-manifest.json' -AccessToken ${{ secrets.GITHUB_TOKEN }} check_build: name: Check validation for failures diff --git a/helpers b/helpers index e71d476..8e2a688 160000 --- a/helpers +++ b/helpers @@ -1 +1 @@ -Subproject commit e71d4763205167b7ef40aa4083f6cd361c61781a +Subproject commit 8e2a68893f830db37265622f81edf509037d5897 -- 2.49.1 From 510c618723a55f9d1d68ba64ae33315524e800e5 Mon Sep 17 00:00:00 2001 From: nikolai-frolov Date: Thu, 14 Oct 2021 12:27:58 +0300 Subject: [PATCH 3/3] Uptake of the latest changes for helpers submodule and remove Access Token usage --- .github/workflows/validate-manifest.yml | 27 +++++++++++++------------ helpers | 2 +- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/validate-manifest.yml b/.github/workflows/validate-manifest.yml index 68efaad..1981aea 100644 --- a/.github/workflows/validate-manifest.yml +++ b/.github/workflows/validate-manifest.yml @@ -1,31 +1,32 @@ name: Validate manifest on: - schedule: - - cron: '0 8,20 * * *' - - pull_request: - branches: + schedule: + - cron: '0 8,20 * * *' + + pull_request: + branches: - main - paths: + paths: - 'versions-manifest.json' + env: TOOL_NAME: "Node" + defaults: run: shell: pwsh - + jobs: validation: runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: + - uses: actions/checkout@v2 + with: submodules: true - - - name: Validate node-versions manifest - run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestPath '.\versions-manifest.json' -AccessToken ${{ secrets.GITHUB_TOKEN }} + + - name: Validate node-versions manifest + run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestPath '.\versions-manifest.json' check_build: name: Check validation for failures diff --git a/helpers b/helpers index 8e2a688..6f1aa3c 160000 --- a/helpers +++ b/helpers @@ -1 +1 @@ -Subproject commit 8e2a68893f830db37265622f81edf509037d5897 +Subproject commit 6f1aa3ce73ce0ea4b58995a63b56a8677607762a -- 2.49.1