Skip to content

Commit 3b27cf1

Browse files
Merge pull request #108 from Mind-Sports-Games/dev
dev to master
2 parents cd52611 + 9d7e562 commit 3b27cf1

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/server.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ jobs:
1818
openjdk14:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
22-
- uses: actions/cache@v2
21+
- uses: actions/checkout@v4
22+
- uses: actions/cache@v4
2323
with:
2424
path: |
2525
~/.sbt
2626
~/.ivy2/cache
2727
key: ${{ runner.os }}-sbt-${{ hashFiles('**/project/build.properties') }}-${{ hashFiles('**/build.sbt') }}-${{ hashFiles('**/project/Dependencies.scala') }}
28-
- uses: actions/setup-java@v2
28+
- uses: actions/setup-java@v4
2929
with:
30-
distribution: zulu
31-
java-version: 14.0.1
30+
distribution: temurin
31+
java-version: 17.0.5
3232
- run: sbt -Depoll=true "test;stage"
3333
- run: cp LICENSE README.md target/universal/stage && git log -n 1 --pretty=oneline > target/universal/stage/commit.txt
3434
- run: cd target/universal/stage && tar -cvpJf ../../../lila-ws-3.0.tar.xz . && cd -
3535
env:
3636
XZ_OPT: '-0'
37-
- uses: actions/upload-artifact@v1
37+
- uses: actions/upload-artifact@v4
3838
with:
3939
name: lila-ws
4040
path: lila-ws-3.0.tar.xz

.github/workflows/test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ jobs:
66
openjdk13:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-java@v1
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-java@v4
1111
with:
12-
java-version: 13
12+
distribution: temurin
13+
java-version: 17.0.5
1314
- run: sbt compile

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ libraryDependencies += "io.lettuce" % "lettuce-core"
1919
libraryDependencies += "io.netty" % "netty-handler" % nettyVersion
2020
libraryDependencies += "io.netty" % "netty-codec-http" % nettyVersion
2121
libraryDependencies += "io.netty" % "netty-transport-native-epoll" % nettyVersion classifier "linux-x86_64"
22-
libraryDependencies += "org.playstrategy" %% "strategygames" % "10.2.1-pstrat135"
22+
libraryDependencies += "org.playstrategy" %% "strategygames" % "10.2.1-pstrat148"
2323
libraryDependencies += "com.typesafe.akka" %% "akka-actor-typed" % akkaVersion
2424
libraryDependencies += "com.typesafe.akka" %% "akka-slf4j" % akkaVersion
2525
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.3"

0 commit comments

Comments
 (0)