Skip to content

Commit 9a21c21

Browse files
authored
Merge branch 'main' into fix/build-errors-2
2 parents f83cabf + b0a0dbe commit 9a21c21

File tree

9 files changed

+26
-25
lines changed

9 files changed

+26
-25
lines changed

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
bump-version:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/[email protected].1
15+
- uses: actions/[email protected].7
1616
with:
1717
fetch-depth: 0
1818
persist-credentials: false
@@ -43,7 +43,7 @@ jobs:
4343
fi
4444
- name: Bump version and push tag
4545
id: tag_version
46-
uses: mathieudutour/github-tag-action@v6.1
46+
uses: mathieudutour/github-tag-action@v6.2
4747
with:
4848
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
4949
default_bump: patch

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
2929
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
3030
steps:
31-
- uses: actions/[email protected].1
31+
- uses: actions/[email protected].7
3232
with:
3333
fetch-depth: 0
3434
- uses: actions/setup-java@v3
@@ -51,13 +51,14 @@ jobs:
5151
AWS_REGION: ap-northeast-1
5252
TEST_TIME_FACTOR: 5
5353
steps:
54-
- uses: actions/[email protected].1
54+
- uses: actions/[email protected].7
5555
with:
5656
fetch-depth: 0
5757
- uses: actions/setup-java@v3
5858
with:
5959
distribution: 'temurin'
6060
java-version: ${{ matrix.jdk }}
6161
cache: 'sbt'
62+
- uses: sbt/setup-sbt@v1
6263
- name: sbt test
6364
run: sbt -v ++${{ matrix.scala }} test

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
1111
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
1212
steps:
13-
- uses: actions/[email protected].1
13+
- uses: actions/[email protected].7
1414
with:
1515
fetch-depth: 0
1616
- uses: actions/setup-java@v3

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
1717
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
1818
steps:
19-
- uses: actions/[email protected].1
19+
- uses: actions/[email protected].7
2020
with:
2121
ref: ${{ github.event.workflow_run.head_branch }}
2222
fetch-depth: 0

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.7.14
1+
version = 3.8.2
22
runner.dialect = scala213
33
style = defaultWithAlign
44
danglingParentheses.preset = true

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,10 +237,10 @@ val `docker-controller-scala-elasticsearch` = (project in file("docker-controlle
237237
scalatest.scalatest % Test,
238238
logback.classic % Test,
239239
elasticsearch.restHighLevelClient % Test,
240-
"co.elastic.clients" % "elasticsearch-java" % "7.17.15" % Test,
241-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.16.0" % Test,
242-
"org.apache.logging.log4j" % "log4j-api" % "2.22.0" % Test,
243-
"org.apache.logging.log4j" % "log4j-core" % "2.22.0" % Test
240+
"co.elastic.clients" % "elasticsearch-java" % "7.17.22" % Test,
241+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.17.2" % Test,
242+
"org.apache.logging.log4j" % "log4j-api" % "2.23.1" % Test,
243+
"org.apache.logging.log4j" % "log4j-core" % "2.23.1" % Test
244244
)
245245
).dependsOn(`docker-controller-scala-core`, `docker-controller-scala-scalatest` % Test)
246246

project/Dependencies.scala

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,32 +31,32 @@ object Dependencies {
3131
}
3232

3333
object amazonAws {
34-
val dynamodb = "com.amazonaws" % "aws-java-sdk-dynamodb" % "1.12.584"
35-
val s3 = "com.amazonaws" % "aws-java-sdk-s3" % "1.12.584"
36-
val sqs = "com.amazonaws" % "aws-java-sdk-sqs" % "1.12.584"
34+
val dynamodb = "com.amazonaws" % "aws-java-sdk-dynamodb" % "1.12.757"
35+
val s3 = "com.amazonaws" % "aws-java-sdk-s3" % "1.12.757"
36+
val sqs = "com.amazonaws" % "aws-java-sdk-sqs" % "1.12.757"
3737
}
3838

3939
object apache {
4040

4141
object zooKeeper {
42-
val zooKeeper = "org.apache.zookeeper" % "zookeeper" % "3.9.1"
42+
val zooKeeper = "org.apache.zookeeper" % "zookeeper" % "3.9.2"
4343
}
4444

4545
object kafka {
46-
val kafkaClients = "org.apache.kafka" % "kafka-clients" % "3.6.0"
46+
val kafkaClients = "org.apache.kafka" % "kafka-clients" % "3.7.1"
4747
}
4848
}
4949

5050
object mysql {
51-
val connectorJava = "com.mysql" % "mysql-connector-j" % "8.2.0"
51+
val connectorJava = "com.mysql" % "mysql-connector-j" % "8.4.0"
5252
}
5353

5454
object postgresql {
55-
val postgresql = "org.postgresql" % "postgresql" % "42.7.0"
55+
val postgresql = "org.postgresql" % "postgresql" % "42.7.3"
5656
}
5757

5858
object elasticsearch {
59-
val restHighLevelClient = "org.elasticsearch.client" % "elasticsearch-rest-high-level-client" % "7.17.15"
59+
val restHighLevelClient = "org.elasticsearch.client" % "elasticsearch-rest-high-level-client" % "7.17.22"
6060
}
6161

6262
object dockerJava {
@@ -85,7 +85,7 @@ object Dependencies {
8585
}
8686

8787
object freemarker {
88-
val freemarker = "org.freemarker" % "freemarker" % "2.3.32"
88+
val freemarker = "org.freemarker" % "freemarker" % "2.3.33"
8989

9090
}
9191

@@ -95,7 +95,7 @@ object Dependencies {
9595
}
9696

9797
object commons {
98-
val io = "commons-io" % "commons-io" % "2.15.0"
98+
val io = "commons-io" % "commons-io" % "2.16.1"
9999
}
100100

101101
object beachape {
@@ -112,6 +112,6 @@ object Dependencies {
112112
}
113113

114114
object fasterxml {
115-
val jacksonModuleScala = "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.16.0"
115+
val jacksonModuleScala = "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.17.2"
116116
}
117117
}

project/build.properties

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

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
22

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

5-
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.6")
5+
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
66

7-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.0")
7+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
88

99
addDependencyTreePlugin

0 commit comments

Comments
 (0)