You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
This action allows caching dependencies and build outputs to improve workflow execution time.
4
4
5
5
>Two other actions are available in addition to the primary`cache` action:
6
+
>
6
7
>*[Restore action](./restore/README.md)
7
8
>*[Save action](./save/README.md)
8
9
@@ -14,6 +15,22 @@ See ["Caching dependencies to speed up workflows"](https://docs.github.com/en/ac
14
15
15
16
##What's New
16
17
18
+
###⚠️ Important changes
19
+
20
+
The cache backend service has been rewritten from the ground up for improved performance and reliability.[actions/cache](https://github.com/actions/cache) now integrates with the new cache service (v2) APIs.
21
+
22
+
The new service will gradually roll out as of**February 1st, 2025**. The legacy service will also be sunset on the same date. Changes in these release are**fully backward compatible**.
23
+
24
+
**We are deprecating some versions of this action**. We recommend upgrading to version`v4` or`v3` as soon as possible before**February 1st, 2025.** (Upgrade instructions below).
25
+
26
+
If you are using pinned SHAs, please use the SHAs of versions`v4.2.0` or`v3.4.0`
27
+
28
+
If you do not upgrade, all workflow runs using any of the deprecated[actions/cache](https://github.com/actions/cache) will fail.
29
+
30
+
Upgrading to the recommended versions will not break your workflows.
31
+
32
+
Read more about the change & access the migration guide:[reference to the announcement](https://github.com/actions/cache/discussions/1510).
Copy file name to clipboardExpand all lines: RELEASES.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,19 @@
1
1
#Releases
2
2
3
+
###4.2.0
4
+
5
+
TLDR; The cache backend service has been rewritten from the ground up for improved performance and reliability.[actions/cache](https://github.com/actions/cache) now integrates with the new cache service (v2) APIs.
6
+
7
+
The new service will gradually roll out as of**February 1st, 2025**. The legacy service will also be sunset on the same date. Changes in these release are**fully backward compatible**.
8
+
9
+
**We are deprecating some versions of this action**. We recommend upgrading to version`v4` or`v3` as soon as possible before**February 1st, 2025.** (Upgrade instructions below).
10
+
11
+
If you are using pinned SHAs, please use the SHAs of versions`v4.2.0` or`v3.4.0`
12
+
13
+
If you do not upgrade, all workflow runs using any of the deprecated[actions/cache](https://github.com/actions/cache) will fail.
14
+
15
+
Upgrading to the recommended versions will not break your workflows.
16
+
3
17
###4.1.2
4
18
5
19
- Add GitHub Enterprise Cloud instances hostname filters to inform API endpoint choices -[#1474](https://github.com/actions/cache/pull/1474)