From 17b6acb089da47380c08e322d3754524b3120077 Mon Sep 17 00:00:00 2001 From: Jasper Hu Date: Wed, 26 Jul 2023 20:16:32 +0200 Subject: [PATCH] chore(): bump node to 16 --- action.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 4e7a2a5..6668cdf 100644 --- a/action.yml +++ b/action.yml @@ -11,7 +11,7 @@ outputs: cache-hit: description: 'A boolean value to indicate if cache was found and restored' runs: - using: 'node12' + using: 'node16' main: 'dist/main/index.js' post: 'dist/post/index.js' post-if: success() diff --git a/package.json b/package.json index 7454500..ab6a9ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "action-local-cache", - "version": "1.0.0", + "version": "1.0.1", "private": true, "description": "A Github Action to save and restore files across job runs directly in the runner's file system", "main": "dist/main/index.ts",