Skip to content

Commit

Permalink
build: edit build.gradle gradle.yml using openjdk 21.0.3 and javafx 2…
Browse files Browse the repository at this point in the history
…1.0.3
  • Loading branch information
LapisBerry committed May 26, 2024
1 parent e783fb2 commit a4fc11d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK 22
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'oracle'
java-version: '21.0.3'
distribution: 'temurin'

# Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
Expand Down Expand Up @@ -58,11 +58,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK 20
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'oracle'
java-version: '21.0.3'
distribution: 'temurin'

# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.
# See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {
}

javafx {
version = '22.0.1'
version = '21.0.3'
modules = ['javafx.controls', 'javafx.media']
}

Expand Down

0 comments on commit a4fc11d

Please sign in to comment.