Skip to content

Commit 22f874e

Browse files
chore(deps): Update gradle and github actions
1 parent 35ab865 commit 22f874e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ jobs:
1212
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
1313
runs-on: "ubuntu-latest"
1414
steps:
15-
- uses: actions/checkout@v4
16-
- uses: gradle/actions/wrapper-validation@v3
15+
- uses: actions/checkout@v6
16+
- uses: gradle/actions/wrapper-validation@v5
1717
- name: Set up JDK
18-
uses: actions/setup-java@v4
18+
uses: actions/setup-java@v5
1919
with:
2020
distribution: 'temurin'
2121
java-version: 21
22-
- uses: gradle/actions/setup-gradle@v3
22+
- uses: gradle/actions/setup-gradle@v5
2323
with:
2424
# allow master and *-dev branches to write caches (default is only master/main)
2525
cache-read-only: ${{ github.ref != 'refs/heads/main' && !(endsWith(github.ref, '-dev') && startsWith(github.ref, 'refs/heads/')) }}
2626
- name: Build
2727
run: ./gradlew build
2828
- name: Upload Test Results
2929
if: always()
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v5
3131
with:
3232
name: Test Results
3333
path: |
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: Upload
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v5
6464
with:
6565
name: Event File
6666
path: ${{ github.event_path }}

.github/workflows/test_results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
actions: read
2121
steps:
2222
- name: Download and Extract Artifacts
23-
uses: dawidd6/action-download-artifact@v3
23+
uses: dawidd6/action-download-artifact@v11
2424
with:
2525
run_id: ${{ github.event.workflow_run.id }}
2626
path: artifacts

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cloud-buildLogic-rootProject-spotless = { id = "org.incendo.cloud-build-logic.sp
77

88
[versions]
99
cloud-build-logic = "0.0.15"
10-
springBoot = "3.3.0"
10+
springBoot = "4.0.0"
1111
ktlint = "1.3.0"
1212
checkstyle = "10.17.0"
1313
kotlin = "1.9.24"

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.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pluginManagement {
1414
}
1515

1616
plugins {
17-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
17+
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
1818
}
1919

2020
dependencyResolutionManagement {

0 commit comments

Comments
 (0)