From 67db4967255507412a7bd3a5de176c8507328eac Mon Sep 17 00:00:00 2001 From: Sascha Mann Date: Sat, 21 May 2022 22:10:35 +0200 Subject: [PATCH] Update default runtime to node16 (#103) EOL was almost a month ago. Woops. I don't care about people using an old version of GitHub Enterprise, so I'm not going to annoy every single user of this action with a breaking update like GH did with their core actions. If you're a user of GHE: consider this a breaking update. --- action.yml | 2 +- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 723a23f..c051303 100644 --- a/action.yml +++ b/action.yml @@ -19,7 +19,7 @@ outputs: julia-bindir: description: 'Path to the directory containing the Julia executable. Equivalent to JULIA_BINDIR: https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_BINDIR' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' branding: icon: 'download' diff --git a/package-lock.json b/package-lock.json index fdf9d2e..528ac1c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "setup-julia", - "version": "1.7.0", + "version": "1.7.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 0a36be0..76f24a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-julia", - "version": "1.7.0", + "version": "1.7.1", "private": true, "description": "setup Julia action", "main": "lib/setup-julia.js",