Skip to content

Commit d8d81aa

Browse files
Bump actions/checkout from 4 to 5 (#909)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 34c1d59 commit d8d81aa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
docs: ${{ steps.changes.outputs.docs }}
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- uses: dorny/paths-filter@v3
2020
id: changes
2121
with:
@@ -39,7 +39,7 @@ jobs:
3939
needs: changes
4040
if: ${{ needs.changes.outputs.code == 'true' }}
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
- name: jcheckstyle
4444
run: ./sbt jcheckStyle
4545
- name: scalafmtCheckAll
@@ -54,7 +54,7 @@ jobs:
5454
matrix:
5555
java: ['8', '11', '17', '21', '24']
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858
- uses: actions/setup-java@v4
5959
with:
6060
distribution: 'zulu'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Release
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 10000
1717
# Fetch all tags so that sbt-dynver can find the previous release version

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Publish snapshots
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 10000
2222
# Fetch all tags so that sbt-dynver can find the previous release version

0 commit comments

Comments
 (0)