Skip to content

Commit cc20d4e

Browse files
committed
More workflow updates
1 parent 1abd38f commit cc20d4e

2 files changed

Lines changed: 5 additions & 24 deletions

File tree

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
version: 2
44
updates:
5-
65
- package-ecosystem: "github-actions"
76
directory: "/"
87
schedule:

.github/workflows/ci.yml

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -30,33 +30,15 @@ jobs:
3030
with:
3131
fetch-depth: 0
3232

33-
- name: Download Java (temurin@11)
34-
id: download-java-temurin-11
35-
if: matrix.java == 'temurin@11'
36-
uses: typelevel/download-java@v1
37-
with:
38-
distribution: temurin
39-
java-version: 11
40-
4133
- name: Setup Java (temurin@11)
4234
if: matrix.java == 'temurin@11'
43-
uses: actions/setup-java@v2
35+
uses: actions/setup-java@v4
4436
with:
45-
distribution: jdkfile
46-
java-version: 11
47-
jdkFile: ${{ steps.download-java-temurin-11.outputs.jdkFile }}
37+
distribution: 'temurin'
38+
java-version: '21'
39+
cache: 'sbt'
4840

49-
- name: Cache sbt
50-
uses: actions/cache@v4
51-
with:
52-
path: |
53-
~/.sbt
54-
~/.ivy2/cache
55-
~/.coursier/cache/v1
56-
~/.cache/coursier/v1
57-
~/AppData/Local/Coursier/Cache/v1
58-
~/Library/Caches/Coursier/v1
59-
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
41+
- uses: sbt/setup-sbt@v1
6042

6143
- name: Generate site
6244
run: sbt '++${{ matrix.scala }}' build

0 commit comments

Comments
 (0)