From b5a97c14e42e60b01d03cc465c182f45029460b5 Mon Sep 17 00:00:00 2001 From: daz Date: Thu, 25 Jan 2024 13:11:34 -0700 Subject: [PATCH] Map outputs from setup-gradle --- action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index de07cda..db4038a 100644 --- a/action.yml +++ b/action.yml @@ -136,16 +136,19 @@ inputs: outputs: build-scan-url: description: Link to the Build ScanĀ® generated by a Gradle build. Note that this output applies to a Step executing Gradle, not to the `gradle-build-action` Step itself. + value: ${{ steps.setup-gradle.outputs.build-scan-url }} dependency-graph-file: description: Path to the GitHub Dependency Graph snapshot file generated by a Gradle build. Note that this output applies to a Step executing Gradle, not to the `gradle-build-action` Step itself. + value: ${{ steps.setup-gradle.outputs.dependency-graph-file }} gradle-version: description: Version of Gradle that was setup by the action - + value: ${{ steps.setup-gradle.outputs.gradle-version }} runs: using: "composite" steps: - name: Setup Gradle + id: setup-gradle uses: gradle/actions/setup-gradle@v3-beta with: gradle-version: ${{ inputs.gradle-version }}