From c64a574c65d9c2e548224d40f6f4fcfc3b78ceb2 Mon Sep 17 00:00:00 2001 From: Ashwin Sangem Date: Mon, 21 Mar 2022 17:53:29 +0530 Subject: [PATCH 1/3] Updated what's new. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 309de0a..2e994a9 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ See ["Caching dependencies to speed up workflows"](https://help.github.com/githu ## What's New +* Updated the minimum runner version support from node 12 -> node 16. +* Increased the cache size limit to 10 GB. * Added support for multiple paths, [glob patterns](https://github.com/actions/toolkit/tree/main/packages/glob), and single file caches. ```yaml From 9cab3ca62a64744fc2d695d09c3724eafb1dec88 Mon Sep 17 00:00:00 2001 From: Ashwin Sangem Date: Tue, 22 Mar 2022 13:48:18 +0530 Subject: [PATCH 2/3] Segregated major versions and added changelog. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 2e994a9..e3d7c4a 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,11 @@ This action allows caching dependencies and build outputs to improve workflow ex See ["Caching dependencies to speed up workflows"](https://help.github.com/github/automating-your-workflow-with-github-actions/caching-dependencies-to-speed-up-workflows). ## What's New +### v3 * Updated the minimum runner version support from node 12 -> node 16. + +### v2 * Increased the cache size limit to 10 GB. * Added support for multiple paths, [glob patterns](https://github.com/actions/toolkit/tree/main/packages/glob), and single file caches. @@ -179,6 +182,12 @@ steps: Since GitHub Enterprise Server uses self-hosted runners, dependencies are typically cached on the runner by whatever dependency management tool is being used (npm, maven, etc.). This eliminates the need for explicit caching in some scenarios. +## Changelog schedule and history + +| Status | Version | Date | Highlights | +|:---|:---|:---|:---| +| Published | v3.0.0 | Mar 21st, 2022 | - Updated minimum runner version support from node 12 -> node 16
| + ## Contributing We would love for you to contribute to `actions/cache`, pull requests are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) for more information. From 36b2031d818f9ab5c78b9230423c837d9315e06c Mon Sep 17 00:00:00 2001 From: Ashwin Sangem Date: Tue, 22 Mar 2022 13:59:54 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index e3d7c4a..58549b8 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ See ["Caching dependencies to speed up workflows"](https://help.github.com/githu ## What's New ### v3 - * Updated the minimum runner version support from node 12 -> node 16. ### v2