From a0e278fc822b77775cf8e4032390fd70e78b9b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20J=2E=20G=C3=B6decke?= Date: Wed, 15 Dec 2021 10:43:02 +0100 Subject: [PATCH 1/4] use node14 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 59a1ab789..5ad937f49 100644 --- a/action.yml +++ b/action.yml @@ -27,5 +27,5 @@ outputs: result: description: The return value of the script, stringified with `JSON.stringify` runs: - using: node12 + using: node14 main: dist/index.js From 0c7b94d98d68aa90ac48960324c1aceebf5ec7e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20J=2E=20G=C3=B6decke?= Date: Wed, 15 Dec 2021 10:46:11 +0100 Subject: [PATCH 2/4] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f9fdc6607..9ffad8ccd 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ [![.github/workflows/ci.yml](https://github.com/actions/github-script/workflows/CI/badge.svg?event=push&branch=main)](https://github.com/actions/github-script/actions?query=workflow%3ACI+branch%3Amain+event%3Apush) [![.github/workflows/licensed.yml](https://github.com/actions/github-script/workflows/Licensed/badge.svg?event=push&branch=main)](https://github.com/actions/github-script/actions?query=workflow%3ALicensed+branch%3Amain+event%3Apush) +**Changes on this fork:** + +- Use node 14 (using the `use node` action didn't work on our self hosted runner for whatever reason) + This action makes it easy to quickly write a script in your workflow that uses the GitHub API and the workflow run context. From 93cd39b6fed2e5b7c92c112d7faeedc3b818b514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20J=2E=20G=C3=B6decke?= Date: Wed, 15 Dec 2021 10:48:41 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ffad8ccd..2dd91e8f9 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ **Changes on this fork:** -- Use node 14 (using the `use node` action didn't work on our self hosted runner for whatever reason) +- Use node 16 (using the `use node` action didn't work on our self hosted runner for whatever reason) This action makes it easy to quickly write a script in your workflow that uses the GitHub API and the workflow run context. From 71b9ebf81eae01832d0e1f897e93716b571622a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20J=2E=20G=C3=B6decke?= Date: Wed, 15 Dec 2021 10:48:57 +0100 Subject: [PATCH 4/4] use node 16 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5ad937f49..622bc81b0 100644 --- a/action.yml +++ b/action.yml @@ -27,5 +27,5 @@ outputs: result: description: The return value of the script, stringified with `JSON.stringify` runs: - using: node14 + using: node16 main: dist/index.js