From d275217cd6000672b995e5813c68c82cb79d396b Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 12 Apr 2024 15:55:52 -0700 Subject: [PATCH] Update to node 20 As suggested by github: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- src/actions/ghci-osbuild/action.yml | 2 +- src/actions/netwait/action.yml | 2 +- src/actions/privdocker/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/actions/ghci-osbuild/action.yml b/src/actions/ghci-osbuild/action.yml index 11b178c..64ff956 100644 --- a/src/actions/ghci-osbuild/action.yml +++ b/src/actions/ghci-osbuild/action.yml @@ -47,5 +47,5 @@ inputs: This uses `github.token` by default. default: ${{ github.token }} runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/src/actions/netwait/action.yml b/src/actions/netwait/action.yml index cf8e6a0..84b2022 100644 --- a/src/actions/netwait/action.yml +++ b/src/actions/netwait/action.yml @@ -27,5 +27,5 @@ inputs: This uses `16` by default. default: 16 runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/src/actions/privdocker/action.yml b/src/actions/privdocker/action.yml index 8004f02..f3c8dc0 100644 --- a/src/actions/privdocker/action.yml +++ b/src/actions/privdocker/action.yml @@ -26,5 +26,5 @@ inputs: This prints "Nothing to do." by default. default: 'echo "Nothing to do."' runs: - using: 'node16' + using: 'node20' main: 'index.js'