Skip to content

Commit

Permalink
Upgrade to actions/setup-java@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
taig committed Jul 5, 2024
1 parent df46730 commit 3f36c33
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
cache: sbt
distribution: temurin
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
cache: sbt
distribution: temurin
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
cache: sbt
distribution: temurin
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
cache: sbt
distribution: temurin
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
cache: sbt
distribution: temurin
Expand Down
2 changes: 1 addition & 1 deletion project/GitHubActionsGenerator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object GitHubActionsGenerator {
object Step {
val SetupJava: Json = Json.obj(
"name" := "Setup Java JDK",
"uses" := "actions/setup-java@v3",
"uses" := "actions/setup-java@v4",
"with" := Json.obj(
"cache" := "sbt",
"distribution" := "temurin",
Expand Down

0 comments on commit 3f36c33

Please sign in to comment.