Skip to content

Commit

Permalink
Try fixing CI with Java 17 (#17)
Browse files Browse the repository at this point in the history
We are seeing this error, so picking Java 17 for now since it's one of the supported  LTS versions

https://github.com/inngest/inngest-kt/actions/runs/8028420744/job/21933603294

> Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=20, vendor=any, implementation=vendor-specific} for LINUX on x86_64.
  • Loading branch information
albertchae authored Feb 24, 2024
1 parent b2a4fca commit ff0cab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inngest-test-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
}

// Apply a specific Java toolchain to ease working on different environments.
java { toolchain { languageVersion.set(JavaLanguageVersion.of(20)) } }
java { toolchain { languageVersion.set(JavaLanguageVersion.of(17)) } }

application {
// Define the main class for the application.
Expand Down

0 comments on commit ff0cab9

Please sign in to comment.