Skip to content

Commit 9c08f8f

Browse files
committed
Merge branch 'main' into java-in-jshell-out
# Conflicts: # .github/workflows/build-all-examples.yml # junit-modular-world/compile.jsh
2 parents 5bcd59d + f7ee10c commit 9c08f8f

File tree

16 files changed

+31
-45
lines changed

16 files changed

+31
-45
lines changed

.github/workflows/build-all-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
java-version: 24
2424
distribution: temurin
25-
- uses: sbt/setup-sbt@6c68d2fe8dfbc0a0534d70101baa2e0420e1a506 # v1.1.9
25+
- uses: sbt/setup-sbt@a9d38be6cfa0c7bfb8be93b4cc4e1edaa6351728 # v1.1.10
2626
- name: 'Build all examples'
2727
run: java src/Builder.java
2828
- name: 'Check automation for updating versions'

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
java-version: 24
3232
distribution: temurin
33-
- uses: sbt/setup-sbt@6c68d2fe8dfbc0a0534d70101baa2e0420e1a506 # v1.1.9
33+
- uses: sbt/setup-sbt@a9d38be6cfa0c7bfb8be93b4cc4e1edaa6351728 # v1.1.10
3434
- name: Initialize CodeQL
3535
uses: github/codeql-action/init@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
3636
with:

junit-jupiter-extensions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tasks.withType(JavaCompile).configureEach {
1717
}
1818

1919
dependencies {
20-
api(platform("org.junit:junit-bom:5.13.1"))
20+
api(platform("org.junit:junit-bom:5.13.2"))
2121
api("org.junit.jupiter:junit-jupiter-api") {
2222
because 'building extensions in "main" using JUnit Jupiter API'
2323
}

junit-jupiter-starter-ant/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
#
55
# Set constants.
66
#
7-
junit_platform_version='1.13.1'
7+
junit_platform_version='1.13.2'
88
ant_version='1.10.13'
99
ant_folder="apache-ant-${ant_version}"
1010
ant_archive="${ant_folder}-bin.tar.gz"

junit-jupiter-starter-bazel/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
JUNIT_JUPITER_VERSION = "5.13.1"
1+
JUNIT_JUPITER_VERSION = "5.13.2"
22

3-
JUNIT_PLATFORM_VERSION = "1.13.1"
3+
JUNIT_PLATFORM_VERSION = "1.13.2"
44

55
bazel_dep(name = "rules_jvm_external", version = "6.7")
66
bazel_dep(name = "contrib_rules_jvm", version = "0.29.0")

junit-jupiter-starter-bazel/MODULE.bazel.lock

Lines changed: 13 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

junit-jupiter-starter-gradle-groovy/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010

1111
dependencies {
1212
implementation(localGroovy())
13-
testImplementation(platform('org.junit:junit-bom:5.13.1'))
13+
testImplementation(platform('org.junit:junit-bom:5.13.2'))
1414
testImplementation('org.junit.jupiter:junit-jupiter')
1515
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1616
}

junit-jupiter-starter-gradle-kotlin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
testImplementation(platform("org.junit:junit-bom:5.13.1"))
13+
testImplementation(platform("org.junit:junit-bom:5.13.2"))
1414
testImplementation("org.junit.jupiter:junit-jupiter")
1515
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1616
}

junit-jupiter-starter-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
dependencies {
12-
testImplementation(platform('org.junit:junit-bom:5.13.1'))
12+
testImplementation(platform('org.junit:junit-bom:5.13.2'))
1313
testImplementation('org.junit.jupiter:junit-jupiter')
1414
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1515
}

junit-jupiter-starter-maven-kotlin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>org.junit</groupId>
2222
<artifactId>junit-bom</artifactId>
23-
<version>5.13.1</version>
23+
<version>5.13.2</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>

0 commit comments

Comments
 (0)