Skip to content

Commit fd7ee69

Browse files
authored
Perform automatic project sync changes (#9)
1 parent 4ebcd04 commit fd7ee69

File tree

9 files changed

+28
-9
lines changed

9 files changed

+28
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
build:
1717
uses: opengood-aio/central-workflows/.github/workflows/gradle-lib-build.yml@main
1818
with:
19+
run-code-coverage: true
1920
run-gradle-validation: true
2021
secrets:
2122
codecov-token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/cancel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ jobs:
55
cancel:
66
uses: opengood-aio/central-workflows/.github/workflows/workflow-cancel.yml@main
77
secrets:
8-
workflow-token: ${{ secrets.WORKFLOW_TOKEN }}
8+
workflow-token: ${{ secrets.WORKFLOW_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,4 @@ on:
1616

1717
jobs:
1818
build:
19-
uses: opengood-aio/central-workflows/.github/workflows/codeql-analyze.yml@main
20-
with:
21-
java-version: 21
19+
uses: opengood-aio/central-workflows/.github/workflows/java-kotlin-codeql-analyze.yml@main

.github/workflows/coverage.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: coverage
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
# Automatically run every Sunday at midnight
7+
- cron: '0 0 * * 0'
8+
branches:
9+
- main
10+
11+
jobs:
12+
coverage:
13+
uses: opengood-aio/central-workflows/.github/workflows/java-kotlin-code-coverage.yml@main
14+
with:
15+
run-code-coverage: true
16+
run-gradle-validation: true
17+
secrets:
18+
codecov-token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ jobs:
2020
with:
2121
git-email: ${{ vars.GIT_EMAIL }}
2222
git-user: ${{ vars.GIT_USER }}
23+
run-code-coverage: true
2324
run-gradle-validation: true
2425
secrets:
26+
codecov-token: ${{ secrets.CODECOV_TOKEN }}
2527
gpg-signing-key-id: ${{ secrets.GPG_SIGNING_KEY_ID }}
2628
gpg-signing-password: ${{ secrets.GPG_SIGNING_PASSWORD }}
2729
gpg-signing-private-key: ${{ secrets.GPG_SIGNING_PRIVATE_KEY }}

.github/workflows/update-license-copyright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ jobs:
99
update-license-copyright:
1010
uses: opengood-aio/central-workflows/.github/workflows/workflow-update-license-copyright.yml@main
1111
secrets:
12-
workflow-token: ${{ secrets.WORKFLOW_TOKEN }}
12+
workflow-token: ${{ secrets.WORKFLOW_TOKEN }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("io.opengood.gradle.settings") version "1.16.0"
2+
id("io.opengood.gradle.settings") version "1.18.0"
33
}
44

55
rootProject.name = "openapi-docs-autoconfig"

versions.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#### suppress inspection "SpellCheckingInspection" for whole file
88
#### suppress inspection "UnusedProperty" for whole file
99

10-
plugin.io.opengood.gradle.config=2.18.0
10+
plugin.io.opengood.gradle.config=2.21.0
1111

12-
version.org.springdoc..springdoc-openapi-starter-webmvc-ui=2.8.6
12+
version.org.springdoc..springdoc-openapi-starter-webmvc-ui=2.8.8
1313

1414
version.org.springdoc..springdoc-openapi-ui=1.8.0

0 commit comments

Comments
 (0)