Skip to content

Commit

Permalink
build: update Aya and build-util
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Nov 27, 2024
1 parent d009b47 commit 2fb3cc8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java 17 environment for the next steps
# Setup Java 21 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
java-version: 21
cache: gradle

# Set environment variables
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
- name: Fetch Sources
uses: actions/[email protected]

# Setup Java 17 environment for the next steps
# Setup Java 21 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 17
java-version: 21
cache: gradle

# Run IDEA prepared for UI testing
Expand Down
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
// Java support
java
// Kotlin support
kotlin("jvm") version "2.0.21"
kotlin("jvm") version "2.1.0"
// https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "1.17.3"
// https://github.com/JetBrains/gradle-changelog-plugin
Expand Down Expand Up @@ -57,7 +57,6 @@ changelog {

java {
withSourcesJar()
if (hasProperty("release")) withJavadocJar()
toolchain {
languageVersion.set(JavaLanguageVersion.of(javaVersion))
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/deps.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version.project=0.0.1-SNAPSHOT
version.aya=0.35.0-SNAPSHOT
version.aya-upstream=0.0.28
version.aya-upstream=0.0.29

0 comments on commit 2fb3cc8

Please sign in to comment.