Skip to content

Commit f3f7470

Browse files
authored
Merge pull request #984 from micronaut-projects/2.12.x
Merge 2.12.x into 2.13.x
2 parents 55a3cc1 + c73282f commit f3f7470

File tree

6 files changed

+24
-16
lines changed

6 files changed

+24
-16
lines changed

.github/renovate.json

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,32 @@
11
{
22
"extends": [
3-
"config:base"
3+
"config:recommended"
4+
],
5+
"addLabels": [
6+
"type: dependency-upgrade"
47
],
5-
"addLabels": ["type: dependency-upgrade"],
68
"schedule": [
7-
"after 10pm every day"
9+
"after 10pm"
810
],
911
"prHourlyLimit": 1,
1012
"prConcurrentLimit": 20,
1113
"timezone": "Europe/Prague",
1214
"packageRules": [
1315
{
14-
"matchPackagePatterns": ["actions.*"],
1516
"dependencyDashboardApproval": true,
16-
"matchUpdateTypes": ["patch"],
17+
"matchUpdateTypes": [
18+
"patch"
19+
],
1720
"matchCurrentVersion": "!/^0/",
18-
"automerge": true
21+
"automerge": true,
22+
"matchPackageNames": [
23+
"/actions.*/"
24+
]
1925
},
2026
{
21-
"matchUpdateTypes": ["patch"],
27+
"matchUpdateTypes": [
28+
"patch"
29+
],
2230
"matchCurrentVersion": "!/^0/",
2331
"automerge": true
2432
}

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
7171
- name: "📊 Publish Test Report"
7272
if: always()
73-
uses: mikepenz/action-junit-report@v4
73+
uses: mikepenz/action-junit-report@v5
7474
with:
7575
check_name: Java CI / Test Report (${{ matrix.java }})
7676
report_paths: '**/build/test-results/test/TEST-*.xml'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,6 @@ jobs:
160160
- name: Upload assets
161161
# Upload the artifacts to the existing release. Note that the SLSA provenance will
162162
# attest to each artifact file and not the aggregated ZIP file.
163-
uses: softprops/action-gh-release@e7a8f85e1c67a31e6ed99a94b41bd0b71bbee6b8 # v2.0.9
163+
uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 # v2.1.0
164164
with:
165165
files: artifacts.zip

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ graal-svm = "23.1.5"
1010
aws-lambda-events = "3.14.0"
1111
aws-lambda-serialization = "1.1.5"
1212
microstream-storage-restclient = "08.01.02-MS-GA"
13-
oracle-jdbc-driver = "23.5.0.24.07"
13+
oracle-jdbc-driver = "23.6.0.24.10"
1414
jetbrains-annotations = "24.1.0"
1515
jmh = "1.37"
1616
groovy = "4.0.22"
1717

1818
micronaut = "4.7.6"
19-
micronaut-platform = "4.6.3"
19+
micronaut-platform = "4.7.1"
2020
micronaut-docs = "2.0.0"
21-
micronaut-test = "4.5.0"
22-
micronaut-discovery = "4.4.0"
21+
micronaut-test = "4.6.0"
22+
micronaut-discovery = "4.5.0"
2323
micronaut-logging = "1.5.0"
24-
micronaut-oracle-cloud = "4.2.1"
24+
micronaut-oracle-cloud = "4.3.1"
2525
micronaut-reactor = "3.6.0"
2626
micronaut-validation = "4.8.0"
2727
micronaut-gradle-plugin = "4.4.4"

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.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-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
@@ -6,7 +6,7 @@ pluginManagement {
66
}
77

88
plugins {
9-
id("io.micronaut.build.shared.settings") version "7.2.3"
9+
id("io.micronaut.build.shared.settings") version "7.3.0"
1010
}
1111

1212
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

0 commit comments

Comments
 (0)