From 10d40416ec0ed36f269e1b75fe80de378e8bd370 Mon Sep 17 00:00:00 2001 From: Maarten de Vries Date: Wed, 31 Jan 2024 12:45:34 +0100 Subject: [PATCH] Upgrade to node20 again. --- README.md | 5 +++++ action.yml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4874450..867e79d 100644 --- a/README.md +++ b/README.md @@ -54,3 +54,8 @@ However, at the moment Cargo (the Rust package manager) does not support SSH aut SSH agents are not meant to be used non-interactively, so HTTPS authentication is a simpler solution. If you can use plain SSH keys that may be easier. + +# Compatibility with custom runners + +The latest version of this action runs on `node20`. +If your custom runner doesn't support `node20` yet, you can pin the action to `v2.0` which runs on `node16`. diff --git a/action.yml b/action.yml index 538628d..d3e4e75 100644 --- a/action.yml +++ b/action.yml @@ -9,5 +9,5 @@ inputs: description: git credentials to use runs: - using: node16 + using: node20 main: lib/main.js