File tree Expand file tree Collapse file tree 5 files changed +17
-10
lines changed Expand file tree Collapse file tree 5 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -46,13 +46,13 @@ jobs:
46
46
uses : actions/setup-java@v4
47
47
with :
48
48
distribution : zulu
49
- java-version : 11
49
+ java-version : 21
50
50
51
51
# Setup sbt
52
52
- name : Setup sbt
53
- uses : olafurpg/setup-scala@v14
54
- with :
55
- java-version : zulu@1.11
53
+ run : |
54
+ curl -fL https://github.com/coursier/coursier/releases/latest/download/cs-x86_64-pc-linux.gz | gzip -d > cs && chmod +x cs && echo Y | ./cs setup
55
+ echo PATH="$PATH:/home/runner/.local/share/coursier/bin" >> "$GITHUB_ENV"
56
56
57
57
# Checkout
58
58
- name : Checkout Open-COBOL-ESQL-4j
Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ jobs:
30
30
uses : actions/setup-java@v4
31
31
with :
32
32
distribution : zulu
33
- java-version : 11
33
+ java-version : 21
34
34
35
35
# Setup sbt
36
36
- name : Setup sbt
37
- uses : olafurpg/setup-scala@v14
38
- with :
39
- java-version : zulu@1.11
37
+ run : |
38
+ curl -fL https://github.com/coursier/coursier/releases/latest/download/cs-x86_64-pc-linux.gz | gzip -d > cs && chmod +x cs && echo Y | ./cs setup
39
+ echo PATH="$PATH:/home/runner/.local/share/coursier/bin" >> "$GITHUB_ENV"
40
40
41
41
# Checkout opensource COBOL 4J
42
42
- name : Checkout opensourcecobol 4J
Original file line number Diff line number Diff line change 70
70
dnf -y update
71
71
dnf install -y gcc make bison flex automake autoconf diffutils gettext
72
72
73
+ # Setup JDK
74
+ - name : Setup JDK
75
+ uses : actions/setup-java@v4
76
+ with :
77
+ distribution : zulu
78
+ java-version : 21
79
+
73
80
# Setup JDK
74
81
- name : Setup JDK
75
82
uses : actions/setup-java@v4
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name := "OCESQL4j"
2
2
3
3
version := " 0.1"
4
4
5
- scalaVersion := " 2.13.6 "
5
+ scalaVersion := " 2.13.14 "
6
6
7
7
libraryDependencies ++= Seq (
8
8
" org.scalatest" %% " scalatest" % " 3.0.8" % Test ,
Original file line number Diff line number Diff line change 1
- sbt.version = 1.5.5
1
+ sbt.version = 1.10.0
You can’t perform that action at this time.
0 commit comments