Skip to content

Commit e6c1349

Browse files
committed
Fix java version in workflows
1 parent a0dde8c commit e6c1349

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/gradle-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v5
1818

19-
- name: Set up JDK 11
19+
- name: Set up JDK 17
2020
uses: actions/setup-java@v5
2121
with:
22-
java-version: "11"
22+
java-version: "17"
2323
distribution: "temurin"
2424

2525
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.

.github/workflows/gradle-dependency-submission.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v5
1919

20-
- name: Set up JDK 11
20+
- name: Set up JDK 17
2121
uses: actions/setup-java@v5
2222
with:
23-
java-version: "11"
23+
java-version: "17"
2424
distribution: "temurin"
2525

2626
# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.

0 commit comments

Comments
 (0)