File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -24,23 +24,23 @@ concurrency:
24
24
25
25
jobs :
26
26
build :
27
- name : Build and Test
27
+ name : Test
28
28
strategy :
29
29
matrix :
30
- os : [ubuntu-latest ]
30
+ os : [ubuntu-22.04 ]
31
31
scala : [2.13]
32
32
java : [temurin@21, temurin@17, temurin@11]
33
33
runs-on : ${{ matrix.os }}
34
34
timeout-minutes : 60
35
35
steps :
36
- - name : Install sbt
37
- uses : sbt/setup-sbt@v1
38
-
39
36
- name : Checkout current branch (full)
40
37
uses : actions/checkout@v4
41
38
with :
42
39
fetch-depth : 0
43
40
41
+ - name : Setup sbt
42
+ uses : sbt/setup-sbt@v1
43
+
44
44
- name : Setup Java (temurin@21)
45
45
id : setup-java-temurin-21
46
46
if : matrix.java == 'temurin@21'
@@ -116,18 +116,18 @@ jobs:
116
116
if : github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
117
117
strategy :
118
118
matrix :
119
- os : [ubuntu-latest ]
119
+ os : [ubuntu-22.04 ]
120
120
java : [temurin@21]
121
121
runs-on : ${{ matrix.os }}
122
122
steps :
123
- - name : Install sbt
124
- uses : sbt/setup-sbt@v1
125
-
126
123
- name : Checkout current branch (full)
127
124
uses : actions/checkout@v4
128
125
with :
129
126
fetch-depth : 0
130
127
128
+ - name : Setup sbt
129
+ uses : sbt/setup-sbt@v1
130
+
131
131
- name : Setup Java (temurin@21)
132
132
id : setup-java-temurin-21
133
133
if : matrix.java == 'temurin@21'
Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ pull_request_rules:
21
21
- or :
22
22
- author=scala-steward
23
23
- author=scala-steward-dev
24
- - status-success=Build and Test (ubuntu-latest , 2.13, temurin@21)
25
- - status-success=Build and Test (ubuntu-latest , 2.13, temurin@17)
26
- - status-success=Build and Test (ubuntu-latest , 2.13, temurin@11)
24
+ - status-success=Test (ubuntu-22.04 , 2.13, temurin@21)
25
+ - status-success=Test (ubuntu-22.04 , 2.13, temurin@17)
26
+ - status-success=Test (ubuntu-22.04 , 2.13, temurin@11)
27
27
actions :
28
28
merge :
29
29
method : merge
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
11
11
addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.3.2" )
12
12
addSbtPlugin(" org.scalameta" % " sbt-mdoc" % " 2.6.2" )
13
13
addSbtPlugin(" org.scoverage" % " sbt-scoverage" % " 2.2.2" )
14
- addSbtPlugin(" org.typelevel" % " sbt-typelevel-mergify" % " 0.7.4 " )
14
+ addSbtPlugin(" org.typelevel" % " sbt-typelevel-mergify" % " 0.7.5 " )
15
15
16
16
ThisBuild / evictionErrorLevel := Level .Info
You can’t perform that action at this time.
0 commit comments