File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -30,18 +30,21 @@ jobs:
3030 runs-on : ${{ matrix.os }}
3131 steps :
3232 - name : Checkout current branch (full)
33- uses : actions/checkout@v4
33+ uses : actions/checkout@v5
3434 with :
3535 fetch-depth : 0
3636
3737 - name : Setup Java (temurin@11)
3838 if : matrix.java == 'temurin@11'
39- uses : actions/setup-java@v4
39+ uses : actions/setup-java@v5
4040 with :
4141 distribution : temurin
4242 java-version : 11
4343 cache : sbt
4444
45+ - name : Setup sbt
46+ uses : sbt/setup-sbt@v1
47+
4548 - name : ' Linter: Scalafix checks'
4649 run : sbt '++ ${{ matrix.scala }}' 'scalafixAll --check'
4750
@@ -91,18 +94,21 @@ jobs:
9194 runs-on : ${{ matrix.os }}
9295 steps :
9396 - name : Checkout current branch (full)
94- uses : actions/checkout@v4
97+ uses : actions/checkout@v5
9598 with :
9699 fetch-depth : 0
97100
98101 - name : Setup Java (temurin@11)
99102 if : matrix.java == 'temurin@11'
100- uses : actions/setup-java@v4
103+ uses : actions/setup-java@v5
101104 with :
102105 distribution : temurin
103106 java-version : 11
104107 cache : sbt
105108
109+ - name : Setup sbt
110+ uses : sbt/setup-sbt@v1
111+
106112 - name : Download target directories (2.13.13)
107113 uses : actions/download-artifact@v4
108114 with :
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ name: Clean
99
1010on : push
1111
12+ permissions :
13+ actions : write
14+
1215jobs :
1316 delete-artifacts :
1417 name : Delete Artifacts
You can’t perform that action at this time.
0 commit comments