Skip to content

Commit 3f1cff5

Browse files
committed
Bump Gradle from 8.14 to 9.0.0
1 parent cbd7240 commit 3f1cff5

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ jobs:
2424
- name: Set up JDK
2525
uses: actions/setup-java@v4
2626
with:
27-
java-version: ${{ matrix.java }}
2827
distribution: 'temurin'
28+
java-version: |
29+
17 # Gradle requires JVM 17+ to run
30+
${{ matrix.java }}
2931
3032
- name: Setup Gradle
3133
uses: gradle/actions/setup-gradle@v4

.github/workflows/manual_build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
uses: actions/setup-java@v4
2424
with:
2525
distribution: 'temurin'
26-
java-version: 8
26+
java-version: |
27+
17 # Gradle requires JVM 17+ to run
28+
8
2729
2830
- name: Setup Gradle
2931
uses: gradle/actions/setup-gradle@v4

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

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.14-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)