Skip to content

Commit b7576be

Browse files
author
Alexandre Teilhet
authored
Merge pull request #50 from StrangeBee/release/4.0.0
Release/4.0.0
2 parents 1732c64 + 7d177a0 commit b7576be

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112

113113
- run: keytool -import -noprompt -trustcacerts -alias StrangeBeeCA -file /etc/ssl/certs/strangebee-sb-caroot.pem -keystore $JAVA_HOME/lib/security/cacerts -storepass changeit || true
114114

115-
- uses: actions/setup-node@v3
115+
- uses: actions/setup-node@v4
116116
timeout-minutes: 15
117117
continue-on-error: true
118118
with:

.github/workflows/build.packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
apt install -y rpm dpkg-dev gnupg2 fakeroot
4646
4747
- name: Setup node
48-
uses: actions/setup-node@v3
48+
uses: actions/setup-node@v4
4949
timeout-minutes: 15
5050
continue-on-error: true
5151
with:
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Set up Python3
104104
if: ${{ github.ref_type == 'tag' || github.event.inputs.is_prod == 'true' }}
105-
uses: actions/setup-python@v6
105+
uses: actions/setup-python@v5
106106
with:
107107
python-version: 3
108108

@@ -155,4 +155,4 @@ jobs:
155155
channel: "#ci-cortex"
156156
name: Cortex build
157157
include_commit_message: true
158-
include_jobs: true
158+
include_jobs: true

.github/workflows/check_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
jvm: corretto:11
1616
apps: sbt
1717
- name: Setup node
18-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@v4
1919
timeout-minutes: 15
2020
continue-on-error: true
2121
with:

.github/workflows/tests.all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Setup node
14-
uses: actions/setup-node@v3
14+
uses: actions/setup-node@v4
1515
timeout-minutes: 15
1616
continue-on-error: true
1717
with:

project/plugins.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ def maybeEnable(pair: (String, ModuleID)): Seq[Setting[?]] =
88
if (isEnabled(pair._1)) addSbtPlugin(pair._2) else Seq()
99

1010
Seq[(String, ModuleID)](
11-
"sbom" -> "com.github.sbt" %% "sbt-sbom" % "0.5.0",
12-
"depcheck" -> "net.nmoncho" % "sbt-dependency-check" % "1.8.3"
11+
"sbom" -> "com.github.sbt" %% "sbt-sbom" % "0.5.0",
12+
"depcheck" -> "net.nmoncho" % "sbt-dependency-check" % "1.8.3"
1313
).flatMap(maybeEnable)
1414

1515
// The Play plugin
16-
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "3.0.9")
17-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5")
16+
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
17+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5")

0 commit comments

Comments
 (0)