Skip to content

Commit

Permalink
Use $HOME
Browse files Browse the repository at this point in the history
Closes gh-5
  • Loading branch information
sjohnr committed Oct 30, 2023
1 parent 384be6d commit 6efab5a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ runs:
- name: Set up gradle user name
shell: bash
run: |
mkdir -p /home/runner/.gradle
echo 'systemProp.user.name=spring-builds+github' >> /home/runner/.gradle/gradle.properties
mkdir -p $HOME/.gradle
echo 'systemProp.user.name=spring-builds+github' >> $HOME/.gradle/gradle.properties
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
env:
GRADLE_USER_HOME: /home/runner/.gradle

0 comments on commit 6efab5a

Please sign in to comment.