File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
publish-artifacts :
11
11
name : JDK 8
12
- runs-on : ubuntu-20.04
12
+ runs-on : ubuntu-latest
13
13
if : ${{ github.repository_owner == 'sbt' }}
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v3
16
+ uses : actions/checkout@v4
17
17
with :
18
18
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
19
19
fetch-depth : 0
27
27
with :
28
28
jvm : adoptium:8
29
29
30
+ - name : Setup sbt
31
+ uses : sbt/setup-sbt@v1
32
+
30
33
- name : Publish artifacts
31
34
run : sbt ci-release
32
35
env :
38
41
- name : Cleanup before cache
39
42
shell : bash
40
43
run : |
44
+ rm -rf "$HOME/.ivy2/local" || true
41
45
find $HOME/Library/Caches/Coursier/v1 -name "ivydata-*.properties" -delete || true
42
46
find $HOME/.ivy2/cache -name "ivydata-*.properties" -delete || true
43
47
find $HOME/.cache/coursier/v1 -name "ivydata-*.properties" -delete || true
You can’t perform that action at this time.
0 commit comments