- Updated minimum runner version support from node 12 -> node 16
- Added support for caching from GHES 3.5.
- Fixed download issue for files > 2GB during restore.
- Added support for dynamic cache size cap on GHES.
- Fixed avoiding empty cache save when no files are available for caching. (issue)
- Fixed tar creation error while trying to create tar with path as
~/
home folder onubuntu-latest
. (issue)
- Removed error handling by consuming actions/cache 3.0 toolkit, Now cache server error handling will be done by toolkit. (PR)
- Fixed #809 - zstd -d: no such file or directory error
- Fixed #833 - cache doesn't work with github workspace directory
- Fixed #810 - download stuck issue. A new timeout is introduced in the download process to abort the download if it gets stuck and doesn't finish within an hour.
- Fix zstd not working for windows on gnu tar in issues #888 and #891.
- Allowing users to provide a custom timeout as input for aborting download of a cache segment using an environment variable
SEGMENT_DOWNLOAD_TIMEOUT_MINS
. Default is 60 minutes.
- Enhanced the warning message for cache unavailablity in case of GHES.
- Fix a bug with sorting inputs.
- Update definition for restore-keys in README.md
- Update toolkit version to 3.0.5 to include
@actions/core@^1.10.0
- Update
@actions/cache
to use updatedsaveState
andsetOutput
functions from@actions/core@^1.10.0
- Update
@actions/cache
on windows to use gnu tar and zstd by default and fallback to bsdtar and zstd if gnu tar is not available. (issue)
- Added support for fallback to gzip to restore old caches on windows.
- Bug fixes for bsdtar fallback if gnutar not available and gzip fallback if cache saved using old cache action on windows.
- Update
@actions/cache
on windows to use gnu tar and zstd by default and fallback to bsdtar and zstd if gnu tar is not available. (issue) - Added support for fallback to gzip to restore old caches on windows.
- Added logs for cache version in case of a cache miss.
- Reverted the changes made in 3.2.1 to use gnu tar and zstd by default on windows.
- Support cross os caching on Windows as an opt-in feature.
- Fix issue with symlink restoration on Windows for cross-os caches.
- Added option to fail job on cache miss.
- Added fix to prevent from setting MYSYS environment variable globally.
- Fix zstd not being used after zstd version upgrade to 1.5.4 on hosted runners.
- Added option to lookup cache without downloading it.
- Reduced segment size to 128MB and segment timeout to 10 minutes to fail fast in case the cache download is stuck.