Skip to content

Commit 635c040

Browse files
committed
Fix CI
1 parent 88a37ca commit 635c040

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
fail-fast: false
1616
steps:
1717
- name: Checkout current branch
18-
uses: actions/checkout@v2.3.4
18+
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121
- name: Setup Scala and Java
2222
uses: olafurpg/setup-scala@v10
2323
- name: Cache scala dependencies
24-
uses: coursier/cache-action@v5
24+
uses: coursier/cache-action@v6
2525
- name: Lint code
2626
run: sbt check
2727

@@ -34,15 +34,15 @@ jobs:
3434
scala: ['2.12.20', '2.13.16', '3.3.5']
3535
steps:
3636
- name: Checkout current branch
37-
uses: actions/checkout@v2.3.4
37+
uses: actions/checkout@v4
3838
with:
3939
fetch-depth: 0
4040
- name: Setup Scala and Java
4141
uses: olafurpg/setup-scala@v10
4242
with:
4343
java-version: ${{ matrix.java }}
4444
- name: Cache scala dependencies
45-
uses: coursier/cache-action@v5
45+
uses: coursier/cache-action@v6
4646
- name: Run tests
4747
run: sbt ++${{ matrix.scala }}! test
4848

@@ -52,15 +52,15 @@ jobs:
5252
if: github.event_name != 'pull_request'
5353
steps:
5454
- name: Checkout current branch
55-
uses: actions/checkout@v2.3.4
55+
uses: actions/checkout@v4
5656
with:
5757
fetch-depth: 0
5858
- name: Setup Scala and Java
5959
uses: olafurpg/setup-scala@v10
6060
with:
6161
java-version: adopt@1.11
6262
- name: Cache scala dependencies
63-
uses: coursier/cache-action@v5
63+
uses: coursier/cache-action@v6
6464
- name: Release artifacts
6565
run: sbt ci-release
6666
env:

0 commit comments

Comments
 (0)