Skip to content

Commit bfd5c24

Browse files
committed
update dependencies
1 parent 99d1f00 commit bfd5c24

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
java: [17, 21, 25]
1515
name: Gradle Build without Publish
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
- name: Setup git user
1919
run: |
2020
git config --global user.name "Nebula Plugin Maintainers"

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
NETFLIX_OSS_REPO_USERNAME: ${{ secrets.ORG_NETFLIXOSS_USERNAME }}
2222
NETFLIX_OSS_REPO_PASSWORD: ${{ secrets.ORG_NETFLIXOSS_PASSWORD }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
- name: Setup git user
2626
run: |
2727
git config --global user.name "Nebula Plugin Maintainers"

gradle.lockfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ com.netflix.nebula:gradle-contacts-plugin:8.1.0=compileClasspath,runtimeClasspat
3939
com.netflix.nebula:gradle-dependency-lock-plugin:16.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4040
com.netflix.nebula:gradle-info-plugin:16.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4141
com.netflix.nebula:gradle-java-cross-compile-plugin:8.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
42-
com.netflix.nebula:nebula-archrules-core:0.3.0=runtimeClasspath,testRuntimeClasspath
43-
com.netflix.nebula:nebula-archrules-gradle-plugin:0.3.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
42+
com.netflix.nebula:nebula-archrules-core:0.5.2=runtimeClasspath,testRuntimeClasspath
43+
com.netflix.nebula:nebula-archrules-gradle-plugin:0.5.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4444
com.netflix.nebula:nebula-dependencies-comparison:0.2.1=runtimeClasspath,testRuntimeClasspath
4545
com.netflix.nebula:nebula-gradle-interop:3.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4646
com.netflix.nebula:nebula-oss-publishing-plugin:4.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4747
com.netflix.nebula:nebula-project-plugin:13.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4848
com.netflix.nebula:nebula-publishing-plugin:23.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4949
com.netflix.nebula:nebula-release-plugin:21.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
50-
com.netflix.nebula:nebula-test:11.9.0=testCompileClasspath,testRuntimeClasspath
50+
com.netflix.nebula:nebula-test:11.10.1=testCompileClasspath,testRuntimeClasspath
5151
com.networknt:json-schema-validator:1.0.76=testCompileClasspath,testRuntimeClasspath
5252
com.nimbusds:nimbus-jose-jwt:9.28=testCompileClasspath,testRuntimeClasspath
5353
com.perforce:p4java:2015.2.1365273=runtimeClasspath,testRuntimeClasspath

src/test/kotlin/nebula/plugin/plugin/NebulaLibraryPluginTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ internal class NebulaLibraryPluginTest {
7272
.`as`("archRules are checked")
7373
.hasOutcome(TaskOutcome.SUCCESS)
7474
assertThat(result.output)
75-
.contains("ArchRule summary:")
75+
.contains("Rule: ")
7676
}
7777

7878
@Test

src/test/kotlin/nebula/plugin/plugin/NebulaPluginPluginTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ gradlePlugin {
100100
.`as`("archRules are checked")
101101
.hasOutcome(TaskOutcome.SUCCESS)
102102
assertThat(result.output)
103-
.contains("ArchRule summary:")
103+
.contains("Rule: ")
104104
}
105105

106106
@Test

0 commit comments

Comments
 (0)