Skip to content

Commit

Permalink
Bump actions/checkout from 3.3.0 to 4.2.0
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.0 to 4.2.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3.3.0...v4.2.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] committed Sep 30, 2024
1 parent cad62e1 commit 5cd3dfe
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 @@ -19,7 +19,7 @@ jobs:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.2.0
- name: Cache sbt
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
name: Build ${{matrix.scala_short_dot}} - ${{matrix.module}}

steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.2.0
- name: Cache sbt
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
CI_RELEASE: publishSigned # By default, sbt-ci-release uses the `+publishSigned` which is publishing for all the Scala versions configured, which is not what we want
CI_SNAPSHOT_RELEASE: publish # By default, sbt-ci-release uses the `+publish` which is publishing for all the Scala versions configured, which is not what we want
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.2.0
- name: Setup Java
uses: actions/[email protected]
with:
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.2.0
with:
fetch-depth: '0'
- name: Setup Scala
Expand All @@ -39,7 +39,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.2.0
with:
fetch-depth: '0'
- name: Setup Scala
Expand All @@ -63,7 +63,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.2.0
with:
ref: ${{ github.head_ref }}
fetch-depth: '0'
Expand Down

0 comments on commit 5cd3dfe

Please sign in to comment.