Skip to content

Commit 00c3142

Browse files
authored
Merge branch 'main' into testcontainers-patch
2 parents 95997c4 + 9e6d5a0 commit 00c3142

9 files changed

Lines changed: 12 additions & 12 deletions

.github/workflows/flow-deploy-release-artifact.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: hl-gc-gradle-lin
2222
steps:
2323
- name: Harden the runner (Audit all outbound calls)
24-
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
24+
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
2525
with:
2626
egress-policy: audit
2727

.github/workflows/flow-deploy-snapshot-release-artifact.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: hl-gc-gradle-lin
2525
steps:
2626
- name: Harden Runner
27-
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
27+
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
2828
with:
2929
egress-policy: audit
3030

.github/workflows/flow-pull-request-formatting.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
runs-on: hl-gc-gradle-lin
2727
steps:
2828
- name: Harden Runner
29-
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
29+
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
3030
with:
3131
egress-policy: audit
3232

3333
- name: Check PR Title
34-
uses: step-security/conventional-pr-title-action@bb2263ec311ca158e9ffa6bd9b997fb425402034 # v3.2.6
34+
uses: step-security/conventional-pr-title-action@b54c0688e6fd1d221f8a936e05fdd82f500640d6 # v3.2.7
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/zxc-build-plugins.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: hl-gc-gradle-lin
2626
steps:
2727
- name: Harden the runner (Audit all outbound calls)
28-
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
28+
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
2929
with:
3030
egress-policy: audit
3131

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Modules (subprojects) are located in the directory hierarchy by using the `javaM
3838
```kotlin
3939
// settings.gradle.kts
4040
plugins {
41-
id("org.hiero.gradle.build") version "0.7.7"
41+
id("org.hiero.gradle.build") version "0.7.8"
4242
}
4343

4444
// Define location of Modules (subprojects)

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ dependencies {
1919
api("com.gradleup.shadow:shadow-gradle-plugin:9.1.0")
2020

2121
implementation("com.adarshr:gradle-test-logger-plugin:4.0.0")
22-
implementation("com.autonomousapps:dependency-analysis-gradle-plugin:3.11.0")
22+
implementation("com.autonomousapps:dependency-analysis-gradle-plugin:3.14.1")
2323
implementation("com.diffplug.spotless:spotless-plugin-gradle:8.5.0")
2424
implementation("com.github.node-gradle:gradle-node-plugin:7.1.0") // install NPM for prettier
2525
implementation("com.google.protobuf:protobuf-gradle-plugin:0.10.0")
2626
implementation("com.gradle.publish:plugin-publish-plugin:2.1.1")
27-
implementation("com.gradle:develocity-gradle-plugin:4.4.1")
27+
implementation("com.gradle:develocity-gradle-plugin:4.4.2")
2828
implementation("com.gradleup.nmcp:nmcp:1.2.1")
2929
implementation("me.champeau.jmh:jmh-gradle-plugin:0.7.3")
3030
implementation("net.swiftzer.semver:semver:2.1.0")
@@ -41,7 +41,7 @@ dependencies {
4141
runtimeOnly("org.gradlex:reproducible-builds:1.1")
4242

4343
testImplementation("org.assertj:assertj-core:3.27.7")
44-
testImplementation("org.junit.jupiter:junit-jupiter-api:6.0.3")
44+
testImplementation("org.junit.jupiter:junit-jupiter-api:6.1.0")
4545
testImplementation("org.junit.jupiter:junit-jupiter-params")
4646
testImplementation("org.junit-pioneer:junit-pioneer:2.3.0")
4747
}

example/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
plugins { id("org.hiero.gradle.build") version "0.7.7" }
2+
plugins { id("org.hiero.gradle.build") version "0.7.8" }
33

44
rootProject.name = "example-repository"
55

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: Apache-2.0
22
plugins {
3-
id("org.hiero.gradle.build") version "0.7.7"
3+
id("org.hiero.gradle.build") version "0.7.8"
44
`kotlin-dsl` apply false
55
}
66

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.8
1+
0.7.9

0 commit comments

Comments
 (0)