Skip to content

Commit 10bd9fb

Browse files
Update all dependencies
1 parent 69815dd commit 10bd9fb

11 files changed

+27
-27
lines changed

.github/workflows/callable.build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
with:
1616
distribution: 'corretto'
1717
java-version: '21'
18-
- uses: gradle/wrapper-validation-action@v2
18+
- uses: gradle/wrapper-validation-action@v3
1919
- name: Setup Gradle
20-
uses: gradle/actions/setup-gradle@v3.1.0
20+
uses: gradle/actions/setup-gradle@v3.3.2
2121
with:
2222
cache-write-only: true
2323
- name: Run build (incl. test)

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

Lines changed: 2 additions & 2 deletions
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/wrapper-validation-action@v2
42+
- uses: gradle/wrapper-validation-action@v3
4343
- name: Setup Gradle
44-
uses: gradle/actions/setup-gradle@v3.1.0
44+
uses: gradle/actions/setup-gradle@v3.3.2
4545
with:
4646
cache-read-only: true
4747
- name: Run build with Gradle Wrapper

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

Lines changed: 2 additions & 2 deletions
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/wrapper-validation-action@v2
24+
- uses: gradle/wrapper-validation-action@v3
2525
- name: Setup Gradle
26-
uses: gradle/actions/setup-gradle@v3.1.0
26+
uses: gradle/actions/setup-gradle@v3.3.2
2727
with:
2828
cache-read-only: true
2929

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

Lines changed: 2 additions & 2 deletions
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/wrapper-validation-action@v2
34+
- uses: gradle/wrapper-validation-action@v3
3535
- name: Setup Gradle
36-
uses: gradle/actions/setup-gradle@v3.1.0
36+
uses: gradle/actions/setup-gradle@v3.3.2
3737
with:
3838
cache-read-only: true
3939

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
with:
1616
distribution: 'corretto'
1717
java-version: '21'
18-
- uses: gradle/wrapper-validation-action@v2
18+
- uses: gradle/wrapper-validation-action@v3
1919
- name: Setup Gradle
20-
uses: gradle/actions/setup-gradle@v3.1.0
20+
uses: gradle/actions/setup-gradle@v3.3.2
2121
with:
2222
cache-read-only: true
2323

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

Lines changed: 2 additions & 2 deletions
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/wrapper-validation-action@v2
21+
- uses: gradle/wrapper-validation-action@v3
2222
- name: Setup Gradle
23-
uses: gradle/actions/setup-gradle@v3.1.0
23+
uses: gradle/actions/setup-gradle@v3.3.2
2424
with:
2525
cache-read-only: true
2626

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

Lines changed: 2 additions & 2 deletions
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/wrapper-validation-action@v2
17+
- uses: gradle/wrapper-validation-action@v3
1818
- name: Setup Gradle
19-
uses: gradle/actions/setup-gradle@v3.1.0
19+
uses: gradle/actions/setup-gradle@v3.3.2
2020
with:
2121
cache-read-only: true
2222

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[versions]
22
junit = "5.10.2"
33
assertj = "3.25.3"
4-
testcontainers = "1.19.6"
5-
publish_plugin = "1.3.0"
4+
testcontainers = "1.19.7"
5+
publish_plugin = "2.0.0"
66
release_plugin = "3.0.2"
77

88
[libraries]

gradle/wrapper/gradle-wrapper.jar

-9 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew.bat

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
4343
%JAVA_EXE% -version >NUL 2>&1
4444
if %ERRORLEVEL% equ 0 goto execute
4545

46-
echo.
47-
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48-
echo.
49-
echo Please set the JAVA_HOME variable in your environment to match the
50-
echo location of your Java installation.
46+
echo. 1>&2
47+
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
48+
echo. 1>&2
49+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
50+
echo location of your Java installation. 1>&2
5151

5252
goto fail
5353

@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5757

5858
if exist "%JAVA_EXE%" goto execute
5959

60-
echo.
61-
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62-
echo.
63-
echo Please set the JAVA_HOME variable in your environment to match the
64-
echo location of your Java installation.
60+
echo. 1>&2
61+
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
62+
echo. 1>&2
63+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
64+
echo location of your Java installation. 1>&2
6565

6666
goto fail
6767

0 commit comments

Comments
 (0)