From 8baac4c8ef753599f92eeb509c246d09d6250fa6 Mon Sep 17 00:00:00 2001 From: daz Date: Fri, 12 Apr 2024 14:22:06 -0600 Subject: [PATCH] Map setup-gradle outputs back to gradle-build-action --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index f205068c..8dd317be 100644 --- a/action.yml +++ b/action.yml @@ -159,10 +159,13 @@ 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 `setup-gradle` 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 `setup-gradle` 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"