Skip to content

Commit cdf92a1

Browse files
committed
style(actions): remove quotes
Signed-off-by: okcoder1 <[email protected]>
1 parent 029805d commit cdf92a1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
- name: Setup JDK
2121
uses: actions/setup-java@v4
2222
with:
23-
java-version: '17'
24-
distribution: 'microsoft'
23+
java-version: 17
24+
distribution: microsoft
2525
- name: Make Gradle wrapper executable
2626
run: chmod +x ./gradlew
2727
- name: Build
@@ -46,8 +46,8 @@ jobs:
4646
- name: Setup JDK
4747
uses: actions/setup-java@v4
4848
with:
49-
java-version: '21'
50-
distribution: 'microsoft'
49+
java-version: 21
50+
distribution: microsoft
5151
- name: Make Gradle wrapper executable
5252
run: chmod +x ./gradlew
5353
- name: Build

.github/workflows/pr-compile.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
- name: Setup JDK
1616
uses: actions/setup-java@v4
1717
with:
18-
java-version: '17'
19-
distribution: 'microsoft'
18+
java-version: 17
19+
distribution: microsoft
2020
- name: Make Gradle wrapper executable
2121
run: chmod +x ./gradlew
2222
- name: Compile
@@ -37,8 +37,8 @@ jobs:
3737
- name: Setup JDK
3838
uses: actions/setup-java@v4
3939
with:
40-
java-version: '21'
41-
distribution: 'microsoft'
40+
java-version: 21
41+
distribution: microsoft
4242
- name: Make Gradle wrapper executable
4343
run: chmod +x ./gradlew
4444
- name: Compile

0 commit comments

Comments
 (0)