Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
docs: ${{ steps.changes.outputs.docs }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- uses: dorny/paths-filter@v3
id: changes
with:
Expand All @@ -39,7 +39,7 @@ jobs:
needs: changes
if: ${{ needs.changes.outputs.code == 'true' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: jcheckstyle
run: ./sbt jcheckStyle
- name: scalafmtCheckAll
Expand All @@ -54,7 +54,7 @@ jobs:
matrix:
java: ['8', '11', '17', '21', '24']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 10000
# Fetch all tags so that sbt-dynver can find the previous release version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Publish snapshots
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 10000
# Fetch all tags so that sbt-dynver can find the previous release version
Expand Down
Loading