Skip to content

Commit

Permalink
Upgrade to actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
taig committed Sep 26, 2023
1 parent 3d3552c commit 461b8f8
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 @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
Expand All @@ -47,7 +47,7 @@ jobs:
- test
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion project/GitHubActionsGenerator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ object GitHubActionsGenerator {

val Checkout: Json = Json.obj(
"name" := "Checkout",
"uses" := "actions/checkout@v2"
"uses" := "actions/checkout@v4"
)
}

Expand Down

0 comments on commit 461b8f8

Please sign in to comment.