mirror of
				https://github.com/gradle/gradle-build-action.git
				synced 2025-11-04 01:28:56 +08:00 
			
		
		
		
	Document the gradle-version output parameter
				
					
				
			This commit is contained in:
		@@ -71,6 +71,8 @@ Moreover, you can use the following aliases:
 | 
			
		||||
 | 
			
		||||
This can be handy to automatically verify your build works with the latest release candidate of Gradle:
 | 
			
		||||
 | 
			
		||||
The actual Gradle version used is available as an action output: `gradle-version`.
 | 
			
		||||
 | 
			
		||||
```yaml
 | 
			
		||||
name: Test latest Gradle RC
 | 
			
		||||
on:
 | 
			
		||||
@@ -86,11 +88,14 @@ jobs:
 | 
			
		||||
        distribution: temurin
 | 
			
		||||
        java-version: 11
 | 
			
		||||
    - uses: gradle/gradle-build-action@v2
 | 
			
		||||
      id: setup-gradle
 | 
			
		||||
      with:
 | 
			
		||||
        gradle-version: release-candidate
 | 
			
		||||
    - run: gradle build --dry-run # just test build configuration
 | 
			
		||||
    - run: echo "The release-candidate version was ${{ steps.setup-gradle.outputs.gradle-version }}"
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Caching build state between Jobs
 | 
			
		||||
 | 
			
		||||
The `gradle-build-action` will use the GitHub Actions cache to save and restore reusable state that may be speed up a subsequent build invocation. This includes most content that is downloaded from the internet as part of a build, as well as expensive to create content like compiled build scripts, transformed Jar files, etc.
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user