mirror of
https://github.com/gradle/actions
synced 2024-11-27 11:52:24 +00:00
Use gradle properties to disable features instead of CLI args
These gradle properties will be silently ignored on older Gradle versions, whereas unknown command-line args will cause Gradle to fail. Fixes #15
This commit is contained in:
parent
9c837ee543
commit
dfd22334ff
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ runs:
|
||||||
build-scan-terms-of-service-agree: ${{ inputs.build-scan-terms-of-service-agree }}
|
build-scan-terms-of-service-agree: ${{ inputs.build-scan-terms-of-service-agree }}
|
||||||
artifact-retention-days: 1
|
artifact-retention-days: 1
|
||||||
arguments: |
|
arguments: |
|
||||||
--no-configure-on-demand
|
-Dorg.gradle.configureondemand=false
|
||||||
--dependency-verification=off
|
-Dorg.gradle.dependency.verification=off
|
||||||
:ForceDependencyResolutionPlugin_resolveAllDependencies
|
:ForceDependencyResolutionPlugin_resolveAllDependencies
|
||||||
${{ inputs.additional-arguments }}
|
${{ inputs.additional-arguments }}
|
||||||
- name: Download and submit dependency graph
|
- name: Download and submit dependency graph
|
||||||
|
|
Loading…
Reference in a new issue