Skip to content

Commit 4328c47

Browse files
committed
fix: gradle 호환 버젼 수정
1 parent 0c9dbf8 commit 4328c47

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/ci-develop.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,19 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
java-version: [8, 11, 17, 21, 24]
1216

1317
steps:
1418
- name: Checkout code
1519
uses: actions/checkout@v4
1620

17-
- name: Set up JDK 24
21+
- name: Set up JDK ${{ matrix.java-version }}
1822
uses: actions/setup-java@v4
1923
with:
20-
java-version: '24'
24+
java-version: ${{ matrix.java-version }}
2125
distribution: 'temurin'
2226

2327
- name: Cache Gradle packages

.github/workflows/release-jitpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
java-version: [8, 11, 17, 21, 22, 23, 24]
16+
java-version: [8, 11, 17, 21, 24]
1717

1818
steps:
1919
- uses: actions/checkout@v4

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)