-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/checkout from 4.2.0 to 4.2.2
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.2.0...v4.2.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
982b81f
commit 60e4109
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
timeout-minutes: 15 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].2 | ||
- name: Cache sbt | ||
uses: actions/cache@v4 | ||
with: | ||
|
@@ -77,7 +77,7 @@ jobs: | |
name: Build ${{matrix.scala_short_dot}} - ${{matrix.module}} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].2 | ||
- name: Cache sbt | ||
uses: actions/cache@v4 | ||
with: | ||
|
@@ -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/[email protected].0 | ||
- uses: actions/[email protected].2 | ||
- name: Setup Java | ||
uses: actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
if: ${{ github.event_name == 'pull_request' }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
fetch-depth: '0' | ||
- name: Setup Scala | ||
|
@@ -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/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
fetch-depth: '0' | ||
- name: Setup Scala | ||
|
@@ -63,7 +63,7 @@ jobs: | |
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
fetch-depth: '0' | ||
|