Skip to content

Commit

Permalink
Switch java distribution for GitHub Actions setup-java
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCAD committed Feb 24, 2024
1 parent 693bbc4 commit a7569ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_workflow.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ workflow(
uses(name = "Check out", action = CheckoutV4())
uses(
name = "Setup Java",
action = SetupJavaV4(distribution = SetupJavaV4.Distribution.Adopt, javaVersion = "17")
action = SetupJavaV4(distribution = SetupJavaV4.Distribution.Temurin, javaVersion = "17")
)
uses(
name = "Build",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: 'actions/setup-java@v4'
with:
java-version: '17'
distribution: 'adopt'
distribution: 'temurin'
- id: 'step-2'
name: 'Build'
uses: 'gradle/gradle-build-action@v3'
Expand Down

0 comments on commit a7569ab

Please sign in to comment.