File tree Expand file tree Collapse file tree 3 files changed +15
-25
lines changed Expand file tree Collapse file tree 3 files changed +15
-25
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,16 @@ name: PR
2
2
on : pull_request
3
3
jobs :
4
4
pr :
5
- runs-on : ubuntu-22.04
5
+ runs-on : ubuntu-latest
6
6
steps :
7
- - uses : actions/checkout@v2
7
+ - uses : actions/checkout@v4
8
8
with :
9
9
fetch-depth : 1
10
10
- name : Set up JDK
11
- uses : actions/setup-java@v3
11
+ uses : actions/setup-java@v4
12
12
with :
13
- distribution : ' temurin'
14
- java-version : 19
15
- - uses : actions/cache@v2
16
- with :
17
- path : |
18
- ~/.sbt
19
- ~/.coursier
20
- key : ${{ runner.os }}-sbt-${{ hashfiles('**/build.sbt') }}
13
+ distribution : temurin
14
+ java-version : 21
15
+ cache : sbt
16
+ - uses : sbt/setup-sbt@v1
21
17
- run : sbt scalafmtCheck Test/scalafmtCheck +test
Original file line number Diff line number Diff line change 6
6
jobs :
7
7
release :
8
8
concurrency : release
9
- runs-on : ubuntu-22.04
9
+ runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v2
11
+ - uses : actions/checkout@v4
12
12
with :
13
13
fetch-depth : 0
14
14
- name : apt-get update
@@ -20,16 +20,12 @@ jobs:
20
20
env :
21
21
PGP_SECRET : ${{ secrets.PGP_SECRET }}
22
22
- name : Set up JDK
23
- uses : actions/setup-java@v3
23
+ uses : actions/setup-java@v4
24
24
with :
25
- distribution : ' temurin'
26
- java-version : 19
27
- - uses : actions/cache@v2
28
- with :
29
- path : |
30
- ~/.sbt
31
- ~/.coursier
32
- key : ${{ runner.os }}-sbt-${{ hashfiles('**/build.sbt') }}
25
+ distribution : temurin
26
+ java-version : 21
27
+ cache : sbt
28
+ - uses : sbt/setup-sbt@v1
33
29
- run : sbt +test ciReleaseTagNextVersion ciReleaseSonatype
34
30
env :
35
31
PGP_PASSPHRASE : ${{ secrets.PGP_PASSPHRASE }}
Original file line number Diff line number Diff line change 1
1
name := " overflowdb"
2
2
ThisBuild / organization := " io.shiftleft"
3
3
ThisBuild / scalaVersion := " 2.13.13"
4
- ThisBuild / crossScalaVersions := Seq (" 2.13.13" , " 3.4.1" )
5
- // TODO once we're on Scala 3.2.2: make chained implicits in `Implicits.scala` available again
6
- // also, change other places that have temporarily been adapted - search for `TODO Scala 3.2.2`
4
+ ThisBuild / crossScalaVersions := Seq (" 2.13.13" , " 3.3.6" )
7
5
publish / skip := true
8
6
9
7
lazy val core = project.in(file(" core" ))
You can’t perform that action at this time.
0 commit comments