From 85aee6a487515f9666fb1b986da95211f3636153 Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Wed, 5 Feb 2020 10:33:21 -0500 Subject: [PATCH 1/3] Update docs with 5GB limit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f5ed930..17dad5e 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ See [Examples](examples.md) for a list of `actions/cache` implementations for us ## Cache Limits -A repository can have up to 2GB of caches. Once the 2GB limit is reached, older caches will be evicted based on when the cache was last accessed. Caches that are not accessed within the last week will also be evicted. +A repository can have up to 5GB of caches. Once the 5GB limit is reached, older caches will be evicted based on when the cache was last accessed. Caches that are not accessed within the last week will also be evicted. ## Skipping steps based on cache-hit From 4dc4b4e7582b8d269c2a98596c3fc0607209b64c Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Wed, 5 Feb 2020 10:39:52 -0500 Subject: [PATCH 2/3] Change name back to Cache --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index cc77f1b..1a320f9 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: 'Cache Artifacts' +name: 'Cache' description: 'Cache artifacts like dependencies and build outputs to improve workflow execution time' author: 'GitHub' inputs: From 78a4b2143b87b907ca34501c4d699c5922ad7a8e Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Wed, 5 Feb 2020 10:40:53 -0500 Subject: [PATCH 3/3] Bump version to 1.1.2 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index b811f3c..c15b316 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cache", - "version": "1.1.1", + "version": "1.1.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 86ce13f..b1217c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cache", - "version": "1.1.1", + "version": "1.1.2", "private": true, "description": "Cache dependencies and build outputs", "main": "dist/restore/index.js",