1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2025-07-12 09:10:44 +00:00

Use posix archive format

This preserves timestamps with nanoseconds precision and makes the cache usable by tools which rely on it (eg https://www.scala-sbt.org/).
This commit is contained in:
OlegYch 2020-03-27 18:49:48 +03:00
parent eb78578266
commit 26c99606c4
4 changed files with 12 additions and 8 deletions

View file

@ -56,6 +56,7 @@ export async function createTar(
const workingDirectory = getWorkingDirectory();
const args = [
"--posix",
"-cz",
"-f",
CacheFilename,