Skip to content

Commit

Permalink
Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 21, 2023
1 parent f9fd03d commit 700d243
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout current branch
uses: actions/checkout@v3.0.0
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Setup Scala and Java
Expand All @@ -40,7 +40,7 @@ jobs:
java: ['adopt@1.8', 'adopt@1.11']
scala: ['2.12.17', '2.13.8', '3.2.1']
steps:
- uses: actions/checkout@v3.0.0
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v13
Expand All @@ -57,7 +57,7 @@ jobs:
needs: [build,lint]
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3.0.0
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v13
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4.1.1
with:
fetch-depth: '0'
- name: Setup Scala
Expand All @@ -41,7 +41,7 @@ jobs:
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4.1.1
with:
fetch-depth: '0'
- name: Setup Scala
Expand All @@ -65,7 +65,7 @@ jobs:
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4.1.1
with:
ref: ${{ github.head_ref }}
fetch-depth: '0'
Expand Down

0 comments on commit 700d243

Please sign in to comment.