From b7c9ce004beca22ed42866b08033b3f17b075ebd Mon Sep 17 00:00:00 2001 From: Corey Butler Date: Sat, 15 Oct 2022 12:21:00 -0500 Subject: [PATCH 1/2] Update action.yml Updated Node.js runtime to v16 (v12 was deprecated by Github). --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index fb3f882c..ae75d097 100644 --- a/action.yml +++ b/action.yml @@ -14,5 +14,5 @@ inputs: description: 'secrets.GITHUB_TOKEN' required: true runs: - using: 'node12' + using: 'node16' main: 'lib/main.js' From 659891f155ee212b83428dffe1543796beb34ef3 Mon Sep 17 00:00:00 2001 From: Corey Butler Date: Sat, 15 Oct 2022 12:26:35 -0500 Subject: [PATCH 2/2] Update package.json Updated @actions/core dependency to prevent deprecation notices (which were introduced on Oct 12, 2022). --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ed6f6bbe..1f46fe2d 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "author": "AButler", "license": "MIT", "dependencies": { - "@actions/core": "^1.9.1", + "@actions/core": "^1.10.0", "@actions/github": "^1.1.0", "fast-glob": "^3.0.4", "mime-types": "^2.1.24"