From c022fd886e59dae7a57d612fea29b794c9a7f6d3 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Mon, 30 Jan 2023 22:35:15 +0100 Subject: [PATCH] Update package.json + changelog --- README.md | 1 + RELEASES.md | 3 +++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2890242..8a6fcc4 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ See ["Caching dependencies to speed up workflows"](https://docs.github.com/en/ac * Two new actions available for granular control over caches - [restore](restore/action.yml) and [save](save/action.yml) * Support cross-os caching as an opt-in feature. See [Cross OS caching](./tips-and-workarounds.md#cross-os-cache) for more info. * Added option to fail job on cache miss. See [Exit workflow on cache miss](./restore/README.md#exit-workflow-on-cache-miss) for more info. +* Added option to lookup cache without downloading it. Refer [here](https://github.com/actions/cache/blob/v2/README.md) for previous versions diff --git a/RELEASES.md b/RELEASES.md index 50cfd91..a58e584 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -70,3 +70,6 @@ ### 3.2.4 - Added option to fail job on cache miss. + +### 3.3.0 +- Added option to lookup cache without downloading it. diff --git a/package-lock.json b/package-lock.json index 010c342..c6dd261 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cache", - "version": "3.2.4", + "version": "3.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cache", - "version": "3.2.4", + "version": "3.3.0", "license": "MIT", "dependencies": { "@actions/cache": "https://github.com/cdce8p/toolkit/raw/cache-dry-run-release/packages/cache/actions-cache-3.1.3.tgz", diff --git a/package.json b/package.json index 6222c78..3a5cd3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cache", - "version": "3.2.4", + "version": "3.3.0", "private": true, "description": "Cache dependencies and build outputs", "main": "dist/restore/index.js",