Skip to content

Commit 239bf0e

Browse files
committed
Fix JDK version typo and standardize java-version format
1 parent d3a613a commit 239bf0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/gradle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- name: Get Fetch Tags
1515
run: git -c protocol.version=2 fetch --tags --progress --no-recurse-submodules origin
1616
if: "!contains(github.ref, 'refs/tags')"
17-
- name: Set up JDK 17.8
17+
- name: Set up JDK 17
1818
uses: actions/setup-java@v4
1919
with:
20-
java-version: 17
20+
java-version: '17'
2121
distribution: 'zulu'
2222
- name: Grant execute permission for gradlew
2323
run: chmod +x gradlew
@@ -27,7 +27,7 @@ jobs:
2727
id: get_version
2828
run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet) && echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
2929
- name: Upload plugin jar
30-
uses: actions/upload-artifact@v4.4.1
30+
uses: actions/upload-artifact@v4
3131
with:
3232
# Artifact name
3333
name: Grails-Plugin-${{ steps.get_version.outputs.VERSION }}

0 commit comments

Comments
 (0)