mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 10:26:46 +00:00
Added gradle.properties file to the cache key
Part of project configuration may be in the `gradle.properties` file and changing it should invalidate cache See: https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties
This commit is contained in:
parent
ea15b3b99c
commit
a76faebd93
5 changed files with 16 additions and 5 deletions
3
dist/cleanup/index.js
vendored
3
dist/cleanup/index.js
vendored
|
@ -68249,7 +68249,8 @@ const supportedPackageManager = [
|
|||
'**/gradle-wrapper.properties',
|
||||
'buildSrc/**/Versions.kt',
|
||||
'buildSrc/**/Dependencies.kt',
|
||||
'gradle/*.versions.toml'
|
||||
'gradle/*.versions.toml',
|
||||
'gradle.properties'
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
3
dist/setup/index.js
vendored
3
dist/setup/index.js
vendored
|
@ -103452,7 +103452,8 @@ const supportedPackageManager = [
|
|||
'**/gradle-wrapper.properties',
|
||||
'buildSrc/**/Versions.kt',
|
||||
'buildSrc/**/Dependencies.kt',
|
||||
'gradle/*.versions.toml'
|
||||
'gradle/*.versions.toml',
|
||||
'gradle.properties'
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue