Skip to content

Commit

Permalink
Perform automatic project sync changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cjaehnen committed Aug 18, 2024
1 parent 259324b commit c8d6564
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ name: build
on:
push:
branches:
- main
- '**'
- '!main'
paths-ignore:
- .github/workflows/cancel.yml
- .github/workflows/release.yml
- .github/workflows/*
- .gitignore
- gradle.properties
- LICENSE
- README.md

jobs:
build:
uses: opengoodio/central-workflows/.github/workflows/gradle-lib-build.yml@main
uses: opengood-aio/central-workflows/.github/workflows/gradle-lib-build.yml@main
with:
run-gradle-validation: true
secrets:
fossa-api-key: ${{ secrets.FOSSA_API_KEY }}
codecov-token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 3 additions & 1 deletion .github/workflows/cancel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ on: [push]

jobs:
cancel:
uses: opengoodio/central-workflows/.github/workflows/workflow-cancel.yml@main
uses: opengood-aio/central-workflows/.github/workflows/workflow-cancel.yml@main
secrets:
workflow-token: ${{ secrets.WORKFLOW_TOKEN }}
21 changes: 21 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CodeQL

on:
pull_request:
types:
- closed
- labeled
branches:
- main
paths-ignore:
- .github/workflows/*
- .gitignore
- gradle.properties
- LICENSE
- README.md

jobs:
build:
uses: opengood-aio/central-workflows/.github/workflows/codeql-analyze.yml@main
with:
java-version: 21
19 changes: 19 additions & 0 deletions .github/workflows/dependencies-submit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: dependencies-submit

on:
pull_request:
types:
- closed
- labeled
branches:
- main
paths-ignore:
- .github/workflows/*
- .gitignore
- gradle.properties
- LICENSE
- README.md

jobs:
dependencies-submit:
uses: opengood-aio/central-workflows/.github/workflows/gradle-dependencies-submit.yml@main
19 changes: 15 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
name: release

on:
push:
pull_request:
types:
- closed
- labeled
branches:
- main
paths-ignore:
- .github/workflows/*
- .gitignore
- gradle.properties
- LICENSE
- README.md

jobs:
release:
uses: opengoodio/central-workflows/.github/workflows/gradle-oss-release.yml@main
uses: opengood-aio/central-workflows/.github/workflows/gradle-maven-central-release.yml@main
with:
git-email: ${{ vars.GIT_EMAIL }}
git-user: ${{ vars.GIT_USER }}
run-gradle-validation: true
secrets:
gpg-signing-key-id: ${{ secrets.GPG_SIGNING_KEY_ID }}
gpg-signing-password: ${{ secrets.GPG_SIGNING_PASSWORD }}
gpg-signing-private-key: ${{ secrets.GPG_SIGNING_PRIVATE_KEY }}
oss-repo-username: ${{ secrets.OSS_REPO_USERNAME }}
oss-repo-password: ${{ secrets.OSS_REPO_PASSWORD }}
maven-central-repo-username: ${{ secrets.MAVEN_CENTRAL_REPO_USERNAME }}
maven-central-repo-password: ${{ secrets.MAVEN_CENTRAL_REPO_PASSWORD }}
workflow-token: ${{ secrets.WORKFLOW_TOKEN }}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pluginManagement {
}

plugins {
id("io.opengood.gradle.settings") version "1.11.0"
id("io.opengood.gradle.settings") version "1.15.0"
}

rootProject.name = "rest-api-contracts"
8 changes: 4 additions & 4 deletions versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
#### suppress inspection "SpellCheckingInspection" for whole file
#### suppress inspection "UnusedProperty" for whole file

plugin.io.opengood.gradle.config=2.3.0
plugin.io.opengood.gradle.config=2.14.0

plugin.org.springframework.cloud.contract=4.0.3
plugin.org.springframework.cloud.contract=4.1.4

version.org.springframework.cloud..spring-cloud-contract-spec-kotlin=4.0.3
version.org.springframework.cloud..spring-cloud-contract-spec-kotlin=4.1.4

version.org.springframework.cloud..spring-cloud-starter-contract-verifier=4.0.3
version.org.springframework.cloud..spring-cloud-starter-contract-verifier=4.1.4

0 comments on commit c8d6564

Please sign in to comment.