mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 08:11:07 -05:00
Cache downloaded dependency jars separately
This will further remove common files out the the Gradle User Home cache entries, reducing cache usage by removing redundancy.
This commit is contained in:
parent
693293c29a
commit
4b92b8d013
3 changed files with 4 additions and 3 deletions
2
dist/main/index.js
vendored
2
dist/main/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/post/index.js
vendored
2
dist/post/index.js
vendored
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,8 @@ const CACHE_PATH = [
|
|||
|
||||
const DEDUPLCIATED_PATHS = [
|
||||
'~/.gradle/wrapper/dists/*/*/*.zip',
|
||||
'~/.gradle/caches/*/generated-gradle-jars/*.jar'
|
||||
'~/.gradle/caches/*/generated-gradle-jars/*.jar',
|
||||
'~/.gradle/caches/modules-*/files-*/**/*.jar'
|
||||
]
|
||||
const MARKER_FILE_EXTENSION = '.txt'
|
||||
|
||||
|
|
Loading…
Reference in a new issue