Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit b76d54a

Browse files
Update actions/checkout action to v4
1 parent 3cd5157 commit b76d54a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
timeout-minutes: 30
1919
steps:
2020
- name: Checkout current branch
21-
uses: actions/checkout@v3.3.0
21+
uses: actions/checkout@v4.0.0
2222
with:
2323
fetch-depth: 0
2424
- name: Setup Scala and Java
@@ -33,7 +33,7 @@ jobs:
3333
timeout-minutes: 60
3434
steps:
3535
- name: Checkout current branch
36-
uses: actions/checkout@v3.3.0
36+
uses: actions/checkout@v4.0.0
3737
- name: Setup Scala and Java
3838
uses: olafurpg/setup-scala@v14
3939
- name: Cache scala dependencies
@@ -52,7 +52,7 @@ jobs:
5252
platform: ['JVM']
5353
steps:
5454
- name: Checkout current branch
55-
uses: actions/checkout@v3.3.0
55+
uses: actions/checkout@v4.0.0
5656
with:
5757
fetch-depth: 0
5858
- name: Setup Scala and Java
@@ -82,7 +82,7 @@ jobs:
8282
if: github.event_name != 'pull_request'
8383
steps:
8484
- name: Checkout current branch
85-
uses: actions/checkout@v3.3.0
85+
uses: actions/checkout@v4.0.0
8686
with:
8787
fetch-depth: 0
8888
- name: Setup Scala and Java

.github/workflows/site.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: ${{ github.event_name == 'pull_request' }}
1919
steps:
2020
- name: Git Checkout
21-
uses: actions/checkout@v3.3.0
21+
uses: actions/checkout@v4.0.0
2222
with:
2323
fetch-depth: '0'
2424
- name: Setup Scala
@@ -41,7 +41,7 @@ jobs:
4141
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
4242
steps:
4343
- name: Git Checkout
44-
uses: actions/checkout@v3.3.0
44+
uses: actions/checkout@v4.0.0
4545
with:
4646
fetch-depth: '0'
4747
- name: Setup Scala
@@ -65,7 +65,7 @@ jobs:
6565
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }}
6666
steps:
6767
- name: Git Checkout
68-
uses: actions/checkout@v3.3.0
68+
uses: actions/checkout@v4.0.0
6969
with:
7070
ref: ${{ github.head_ref }}
7171
fetch-depth: '0'

0 commit comments

Comments
 (0)