1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-02 04:57:46 +02:00

Update package.json + changelog

This commit is contained in:
Marc Mueller 2023-01-30 22:35:15 +01:00
parent 9478269f86
commit c022fd886e
4 changed files with 7 additions and 3 deletions

View file

@ -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

View file

@ -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.

4
package-lock.json generated
View file

@ -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",

View file

@ -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",