Skip to content

Commit 31d67f2

Browse files
committed
Revert "Update Gradle to enable Java 21+ syntax on test code (do not affect production-code backward compatibility)"
This reverts commit 76bcbb1.
1 parent e5b93b3 commit 31d67f2

File tree

7 files changed

+219
-280
lines changed

7 files changed

+219
-280
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up JDK 21
18+
- name: Set up JDK 17
1919
uses: actions/setup-java@v4
2020
with:
21-
java-version: '21'
21+
java-version: '17'
2222
distribution: 'temurin'
2323

2424
- name: Checkout code

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727

2828
steps:
2929
- uses: actions/checkout@v4
30-
- name: Set up JDK 21
30+
- name: Set up JDK 17
3131
uses: actions/setup-java@v4
3232
with:
33-
java-version: '21'
33+
java-version: '17'
3434
distribution: 'temurin'
3535

3636
# Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.

.github/workflows/updateTestStats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v4
22-
- name: Set up JDK 21
22+
- name: Set up JDK 17
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: '21'
25+
java-version: '17'
2626
distribution: 'temurin'
2727

2828
# Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.

gradle/wrapper/gradle-wrapper.jar

14.6 KB
Binary file not shown.
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
4-
networkTimeout=10000
5-
validateDistributionUrl=true
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
64
zipStoreBase=GRADLE_USER_HOME
75
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)