Skip to content

Commit c72d99f

Browse files
committed
drop scala 2.11
1 parent 38fe6c2 commit c72d99f

File tree

4 files changed

+9
-19
lines changed

4 files changed

+9
-19
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest]
31-
scala: [2.11, 2.12, 2.13, 3]
31+
scala: [2.12, 2.13, 3]
3232
java: [zulu@8]
3333
runs-on: ${{ matrix.os }}
3434
timeout-minutes: 60
3535
steps:
3636
- name: Checkout current branch (full)
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838
with:
3939
fetch-depth: 0
4040

@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: sbt update
5151
if: matrix.java == 'zulu@8' && steps.setup-java-zulu-8.outputs.cache-hit == 'false'
52-
run: sbt '++ ${{ matrix.scala }}' reload +update
52+
run: sbt +update
5353

5454
- name: Check that workflows are up to date
5555
run: sbt githubWorkflowCheck
@@ -83,7 +83,7 @@ jobs:
8383
runs-on: ${{ matrix.os }}
8484
steps:
8585
- name: Checkout current branch (full)
86-
uses: actions/checkout@v3
86+
uses: actions/checkout@v4
8787
with:
8888
fetch-depth: 0
8989

@@ -98,17 +98,7 @@ jobs:
9898

9999
- name: sbt update
100100
if: matrix.java == 'zulu@8' && steps.setup-java-zulu-8.outputs.cache-hit == 'false'
101-
run: sbt reload +update
102-
103-
- name: Download target directories (2.11)
104-
uses: actions/download-artifact@v3
105-
with:
106-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.11
107-
108-
- name: Inflate target directories (2.11)
109-
run: |
110-
tar xf targets.tar
111-
rm targets.tar
101+
run: sbt +update
112102

113103
- name: Download target directories (2.12)
114104
uses: actions/download-artifact@v3

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ organization := "com.github.swagger-akka-http"
88

99
ThisBuild / scalaVersion := "2.13.11"
1010

11-
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.18", "2.13.11", "3.3.0")
11+
ThisBuild / crossScalaVersions := Seq("2.12.18", "2.13.11", "3.3.0")
1212

1313
ThisBuild / organizationHomepage := Some(url("https://github.com/swagger-akka-http/swagger-enumeratum-module"))
1414

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.0
1+
sbt.version=1.9.6

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
22

3-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
3+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9")
44

5-
addSbtPlugin("org.typelevel" % "sbt-typelevel-sonatype-ci-release" % "0.5.0-RC2")
5+
addSbtPlugin("org.typelevel" % "sbt-typelevel-sonatype-ci-release" % "0.5.4")
66

77
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 commit comments

Comments
 (0)