@@ -47,6 +47,17 @@ inputs:
47
47
description : Indicate that you agree to the Build Scan® terms of use. This input value must be "yes".
48
48
required : false
49
49
50
+ # DEPRECATED ACTION INPUTS
51
+ build-scan-terms-of-service-url :
52
+ description : The URL to the Build Scan® terms of use. This input must be set to 'https://gradle.com/terms-of-service'.
53
+ required : false
54
+ deprecation-message : The input has been renamed to align with the Develocity API. Use 'build-scan-terms-of-use-url' instead.
55
+
56
+ build-scan-terms-of-service-agree :
57
+ description : Indicate that you agree to the Build Scan® terms of use. This input value must be "yes".
58
+ required : false
59
+ deprecation-message : The input has been renamed to align with the Develocity API. Use 'build-scan-terms-of-use-agree' instead.
60
+
50
61
runs :
51
62
using : " composite"
52
63
steps :
@@ -59,16 +70,16 @@ runs:
59
70
fi
60
71
- name : Generate dependency graph
61
72
if : ${{ inputs.dependency-graph == 'generate-and-submit' || inputs.dependency-graph == 'generate-and-upload' }}
62
- uses : gradle/actions/setup-gradle@v3.1 .0
73
+ uses : gradle/actions/setup-gradle@v3.2 .0
63
74
with :
64
75
dependency-graph : ${{ inputs.dependency-graph }}
65
76
dependency-graph-continue-on-failure : false
66
77
gradle-version : ${{ inputs.gradle-version }}
67
78
build-root-directory : ${{ inputs.build-root-directory }}
68
79
cache-encryption-key : ${{ inputs.cache-encryption-key }}
69
80
build-scan-publish : ${{ inputs.build-scan-publish }}
70
- build-scan-terms-of-use-url : ${{ inputs.build-scan-terms-of-use-url }}
71
- build-scan-terms-of-use-agree : ${{ inputs.build-scan-terms-of-use-agree }}
81
+ build-scan-terms-of-use-url : ${{ inputs.build-scan-terms-of-use-url || inputs.build-scan-terms-of-service-url }}
82
+ build-scan-terms-of-use-agree : ${{ inputs.build-scan-terms-of-use-agree || inputs.build-scan-terms-of-service-agree }}
72
83
artifact-retention-days : 1
73
84
arguments : |
74
85
-Dorg.gradle.configureondemand=false
78
89
${{ inputs.additional-arguments }}
79
90
- name : Download and submit dependency graph
80
91
if : ${{ inputs.dependency-graph == 'download-and-submit' }}
81
- uses : gradle/actions/setup-gradle@v3.1 .0
92
+ uses : gradle/actions/setup-gradle@v3.2 .0
82
93
with :
83
94
dependency-graph : download-and-submit
84
95
dependency-graph-continue-on-failure : false
0 commit comments