Skip to content

Commit ccb32ed

Browse files
fix(deps): update all dependencies
1 parent a82025d commit ccb32ed

11 files changed

+22
-23
lines changed

.github/workflows/callable.build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515
with:
1616
distribution: 'corretto'
1717
java-version: '21'
18-
- uses: gradle/actions/wrapper-validation@v3
18+
- uses: gradle/actions/wrapper-validation@v4
1919
- name: Setup Gradle
20-
uses: gradle/actions/setup-gradle@v3.5.0
20+
uses: gradle/actions/setup-gradle@v4.3.0
2121
with:
2222
cache-write-only: true
2323
- name: Run build (incl. test)
2424
run: ./gradlew build -x intTest --no-daemon
2525

2626
- name: Publish Test Report
27-
uses: mikepenz/action-junit-report@v4
27+
uses: mikepenz/action-junit-report@v5
2828
if: success() || failure() # always run even if the previous step fails
2929
with:
3030
report_paths: '**/build/test-results/test/TEST-*.xml'

.github/workflows/callable.code-analysis.codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
with:
4040
distribution: 'corretto'
4141
java-version: '21'
42-
- uses: gradle/actions/wrapper-validation@v3
42+
- uses: gradle/actions/wrapper-validation@v4
4343
- name: Setup Gradle
44-
uses: gradle/actions/setup-gradle@v3.5.0
44+
uses: gradle/actions/setup-gradle@v4.3.0
4545
with:
4646
cache-read-only: true
4747
- name: Run build with Gradle Wrapper

.github/workflows/callable.code-analysis.trivy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
with:
2222
distribution: 'corretto'
2323
java-version: '21'
24-
- uses: gradle/actions/wrapper-validation@v3
24+
- uses: gradle/actions/wrapper-validation@v4
2525
- name: Setup Gradle
26-
uses: gradle/actions/setup-gradle@v3.5.0
26+
uses: gradle/actions/setup-gradle@v4.3.0
2727
with:
2828
cache-read-only: true
2929

.github/workflows/callable.gradle-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
with:
3232
distribution: 'corretto'
3333
java-version: '21'
34-
- uses: gradle/actions/wrapper-validation@v3
34+
- uses: gradle/actions/wrapper-validation@v4
3535
- name: Setup Gradle
36-
uses: gradle/actions/setup-gradle@v3.5.0
36+
uses: gradle/actions/setup-gradle@v4.3.0
3737
with:
3838
cache-read-only: true
3939

.github/workflows/callable.integration-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
with:
1616
distribution: 'corretto'
1717
java-version: '21'
18-
- uses: gradle/actions/wrapper-validation@v3
18+
- uses: gradle/actions/wrapper-validation@v4
1919
- name: Setup Gradle
20-
uses: gradle/actions/setup-gradle@v3.5.0
20+
uses: gradle/actions/setup-gradle@v4.3.0
2121
with:
2222
cache-read-only: true
2323

2424
- name: Run integration tests
2525
run: ./gradlew intTest -x test --no-daemon
2626

2727
- name: Publish Test Report
28-
uses: mikepenz/action-junit-report@v4
28+
uses: mikepenz/action-junit-report@v5
2929
if: success() || failure() # always run even if the previous step fails
3030
with:
3131
report_paths: '**/build/test-results/intTest/TEST-*.xml'

.github/workflows/callable.publish-javadoc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
with:
1919
distribution: 'corretto'
2020
java-version: '21'
21-
- uses: gradle/actions/wrapper-validation@v3
21+
- uses: gradle/actions/wrapper-validation@v4
2222
- name: Setup Gradle
23-
uses: gradle/actions/setup-gradle@v3.5.0
23+
uses: gradle/actions/setup-gradle@v4.3.0
2424
with:
2525
cache-read-only: true
2626

.github/workflows/callable.publish-sonatype.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
with:
1515
distribution: 'corretto'
1616
java-version: '21'
17-
- uses: gradle/actions/wrapper-validation@v3
17+
- uses: gradle/actions/wrapper-validation@v4
1818
- name: Setup Gradle
19-
uses: gradle/actions/setup-gradle@v3.5.0
19+
uses: gradle/actions/setup-gradle@v4.3.0
2020
with:
2121
cache-read-only: true
2222

gradle/libs.versions.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[versions]
2-
junit = "5.10.3"
3-
assertj = "3.26.3"
4-
testcontainers = "1.20.0"
2+
junit = "5.12.0"
3+
assertj = "3.27.3"
4+
testcontainers = "1.20.5"
55
publish_plugin = "2.0.0"
6-
release_plugin = "3.0.2"
6+
release_plugin = "3.1.0"
77

88
[libraries]
99
junit = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" }

gradle/wrapper/gradle-wrapper.jar

79 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)