diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fe04880..27671c9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,9 +16,9 @@ jobs: java-version: '18' cache: 'gradle' - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 + uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 - name: Publish package - uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 + uses: gradle/gradle-build-action@a4cf152f482c7ca97ef56ead29bf08bcd953284c with: arguments: publish env: diff --git a/.github/workflows/regen.yml b/.github/workflows/regen.yml index 0a7abd1..bd052a2 100644 --- a/.github/workflows/regen.yml +++ b/.github/workflows/regen.yml @@ -17,13 +17,13 @@ jobs: java-version: '18' cache: 'gradle' - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 + uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 - name: Generate code run: | make clone-proto make gen-proto - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v5 with: # required so the PR triggers workflow runs token: ${{ secrets.GH_CQ_BOT }} diff --git a/CHANGELOG.md b/CHANGELOG.md index dc2807a..110ffc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.0.3](https://github.com/cloudquery/plugin-pb-java/compare/v0.0.2...v0.0.3) (2023-08-03) + + +### Bug Fixes + +* **deps:** Update dependency com.google.protobuf:protobuf-java-util to v3.23.4 ([#19](https://github.com/cloudquery/plugin-pb-java/issues/19)) ([06c7f64](https://github.com/cloudquery/plugin-pb-java/commit/06c7f6432cebf740963420d64917522843511c45)) +* **deps:** Update dependency org.mockito:mockito-core to v3.12.4 ([#20](https://github.com/cloudquery/plugin-pb-java/issues/20)) ([b70eb74](https://github.com/cloudquery/plugin-pb-java/commit/b70eb74bd3d5ca116c1005476c373ad09fc807ff)) +* **deps:** Update grpcVersion to v1.57.1 ([#15](https://github.com/cloudquery/plugin-pb-java/issues/15)) ([19ca381](https://github.com/cloudquery/plugin-pb-java/commit/19ca38185b4265407ebc51c520cbef5a704b7759)) +* **deps:** Update peter-evans/create-pull-request action to v5 ([#22](https://github.com/cloudquery/plugin-pb-java/issues/22)) ([09076e0](https://github.com/cloudquery/plugin-pb-java/commit/09076e02513b772b3f83c600e56b856d4416f575)) +* **deps:** Update plugin com.google.protobuf to v0.9.4 ([#16](https://github.com/cloudquery/plugin-pb-java/issues/16)) ([d3f8c99](https://github.com/cloudquery/plugin-pb-java/commit/d3f8c9903e79d71485ce348dafc2c550d3dce93d)) + ## [0.0.2](https://github.com/cloudquery/plugin-pb-java/compare/v0.0.1...v0.0.2) (2023-08-03) diff --git a/build.gradle b/build.gradle index 9390aa3..cf7a32c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'application' - id 'com.google.protobuf' version '0.9.1' + id 'com.google.protobuf' version '0.9.4' // Generate IntelliJ IDEA's .idea & .iml project files id 'idea' id "maven-publish" @@ -10,7 +10,7 @@ mainClassName = 'main.Main' group 'com.cloudquery' // x-release-please-start-version -version = '0.0.2' +version = '0.0.3' // x-release-please-end repositories { @@ -23,8 +23,8 @@ repositories { sourceCompatibility = 1.8 targetCompatibility = 1.8 -def grpcVersion = '1.57.0' -def protobufVersion = '3.22.3' +def grpcVersion = '1.57.1' +def protobufVersion = '3.23.4' def protocVersion = protobufVersion dependencies { @@ -40,7 +40,7 @@ dependencies { testImplementation "io.grpc:grpc-testing:${grpcVersion}" testImplementation "junit:junit:4.13.2" - testImplementation "org.mockito:mockito-core:3.4.0" + testImplementation "org.mockito:mockito-core:3.12.4" } protobuf {