diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml
index 9351fdfb..3473042c 100644
--- a/.github/.OwlBot.lock.yaml
+++ b/.github/.OwlBot.lock.yaml
@@ -13,4 +13,4 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
- digest: sha256:387835a1375a0049ec44e02542c844302854c732d8291bdf8e472c0ff70a8f67
+ digest: sha256:df8d7b2cc0dbc65871e7edd86601901a0612b272fa3f7f0eb590c5c53aa5f92e
diff --git a/.github/workflows/approve-readme.yaml b/.github/workflows/approve-readme.yaml
index 1bb18232..f5fc7d51 100644
--- a/.github/workflows/approve-readme.yaml
+++ b/.github/workflows/approve-readme.yaml
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository_owner == 'googleapis' && github.head_ref == 'autosynth-readme'
steps:
- - uses: actions/github-script@v5
+ - uses: actions/github-script@v6
with:
github-token: ${{secrets.YOSHI_APPROVER_TOKEN}}
script: |
diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml
index 18e23230..7a106d00 100644
--- a/.github/workflows/auto-release.yaml
+++ b/.github/workflows/auto-release.yaml
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
if: contains(github.head_ref, 'release-please')
steps:
- - uses: actions/github-script@v5
+ - uses: actions/github-script@v6
with:
github-token: ${{secrets.YOSHI_APPROVER_TOKEN}}
debug: true
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 6b5e56aa..83ef7f9c 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -27,8 +27,8 @@ jobs:
matrix:
java: [8, 11, 17]
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-java@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-java@v3
with:
distribution: zulu
java-version: ${{matrix.java}}
@@ -39,8 +39,8 @@ jobs:
windows:
runs-on: windows-latest
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-java@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 8
@@ -54,8 +54,8 @@ jobs:
matrix:
java: [8, 11, 17]
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-java@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-java@v3
with:
distribution: zulu
java-version: ${{matrix.java}}
@@ -64,8 +64,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-java@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
@@ -76,8 +76,8 @@ jobs:
clirr:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-java@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 8
diff --git a/.github/workflows/samples.yaml b/.github/workflows/samples.yaml
index d5d964df..912ed8b2 100644
--- a/.github/workflows/samples.yaml
+++ b/.github/workflows/samples.yaml
@@ -20,9 +20,10 @@ jobs:
checkstyle:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-java@v1
+ - uses: actions/checkout@v3
+ - uses: actions/setup-java@v3
with:
+ distribution: zulu
java-version: 8
- name: Run checkstyle
run: mvn -P lint --quiet --batch-mode checkstyle:check
diff --git a/.kokoro/build.bat b/.kokoro/build.bat
index cc602c9e..067cf4a4 100644
--- a/.kokoro/build.bat
+++ b/.kokoro/build.bat
@@ -1,18 +1,18 @@
+:: Copyright 2022 Google LLC
+::
+:: Licensed under the Apache License, Version 2.0 (the "License");
+:: you may not use this file except in compliance with the License.
+:: You may obtain a copy of the License at
+::
+:: http://www.apache.org/licenses/LICENSE-2.0
+::
+:: Unless required by applicable law or agreed to in writing, software
+:: distributed under the License is distributed on an "AS IS" BASIS,
+:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+:: See the License for the specific language governing permissions and
+:: limitations under the License.
+:: Github action job to test core java library features on
+:: downstream client libraries before they are released.
:: See documentation in type-shell-output.bat
-# Copyright 2022 Google LLC
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-# Github action job to test core java library features on
-# downstream client libraries before they are released.
"C:\Program Files\Git\bin\bash.exe" %~dp0build.sh
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 06551f01..6d8464f9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+### [2.3.5](https://github.com/googleapis/java-container/compare/v2.3.4...v2.3.5) (2022-03-04)
+
+
+### Dependencies
+
+* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.8.0 ([#696](https://github.com/googleapis/java-container/issues/696)) ([2503b79](https://github.com/googleapis/java-container/commit/2503b797a540de5298bee3206d4518b5fb13b75d))
+
### [2.3.4](https://github.com/googleapis/java-container/compare/v2.3.3...v2.3.4) (2022-02-28)
diff --git a/README.md b/README.md
index 9b59438f..b3a17460 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
com.google.cloud
libraries-bom
- 24.3.0
+ 24.4.0
pom
import
@@ -41,7 +41,7 @@ If you are using Maven without BOM, add this to your dependencies:
com.google.cloud
google-cloud-container
- 2.3.3
+ 2.3.4
```
@@ -49,20 +49,20 @@ If you are using Maven without BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies
```Groovy
-implementation platform('com.google.cloud:libraries-bom:24.3.0')
+implementation platform('com.google.cloud:libraries-bom:24.4.0')
implementation 'com.google.cloud:google-cloud-container'
```
If you are using Gradle without BOM, add this to your dependencies
```Groovy
-implementation 'com.google.cloud:google-cloud-container:2.3.3'
+implementation 'com.google.cloud:google-cloud-container:2.3.4'
```
If you are using SBT, add this to your dependencies
```Scala
-libraryDependencies += "com.google.cloud" % "google-cloud-container" % "2.3.3"
+libraryDependencies += "com.google.cloud" % "google-cloud-container" % "2.3.4"
```
## Authentication
diff --git a/google-cloud-container-bom/pom.xml b/google-cloud-container-bom/pom.xml
index 06ee7151..55e2d1f0 100644
--- a/google-cloud-container-bom/pom.xml
+++ b/google-cloud-container-bom/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-container-bom
- 2.3.4
+ 2.3.5
pom
com.google.cloud
@@ -52,27 +52,27 @@
com.google.cloud
google-cloud-container
- 2.3.4
+ 2.3.5
com.google.api.grpc
grpc-google-cloud-container-v1
- 2.3.4
+ 2.3.5
com.google.api.grpc
grpc-google-cloud-container-v1beta1
- 2.3.4
+ 2.3.5
com.google.api.grpc
proto-google-cloud-container-v1
- 2.3.4
+ 2.3.5
com.google.api.grpc
proto-google-cloud-container-v1beta1
- 2.3.4
+ 2.3.5
diff --git a/google-cloud-container/pom.xml b/google-cloud-container/pom.xml
index 9425b155..802c9b33 100644
--- a/google-cloud-container/pom.xml
+++ b/google-cloud-container/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-container
- 2.3.4
+ 2.3.5
jar
Google Cloud Container
https://github.com/googleapis/java-container
@@ -11,7 +11,7 @@
com.google.cloud
google-cloud-container-parent
- 2.3.4
+ 2.3.5
google-cloud-container
diff --git a/grpc-google-cloud-container-v1/pom.xml b/grpc-google-cloud-container-v1/pom.xml
index e98160ba..2809fd16 100644
--- a/grpc-google-cloud-container-v1/pom.xml
+++ b/grpc-google-cloud-container-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-cloud-container-v1
- 2.3.4
+ 2.3.5
grpc-google-cloud-container-v1
GRPC library for grpc-google-cloud-container-v1
com.google.cloud
google-cloud-container-parent
- 2.3.4
+ 2.3.5
diff --git a/grpc-google-cloud-container-v1beta1/pom.xml b/grpc-google-cloud-container-v1beta1/pom.xml
index 697cfeb8..53504ba2 100644
--- a/grpc-google-cloud-container-v1beta1/pom.xml
+++ b/grpc-google-cloud-container-v1beta1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-cloud-container-v1beta1
- 2.3.4
+ 2.3.5
grpc-google-cloud-container-v1beta1
GRPC library for google-cloud-container
com.google.cloud
google-cloud-container-parent
- 2.3.4
+ 2.3.5
diff --git a/pom.xml b/pom.xml
index d3dc8a5e..aaf861df 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-container-parent
pom
- 2.3.4
+ 2.3.5
Google Cloud Container Parent
https://github.com/googleapis/java-container
@@ -61,33 +61,33 @@
com.google.api.grpc
proto-google-cloud-container-v1
- 2.3.4
+ 2.3.5
com.google.api.grpc
proto-google-cloud-container-v1beta1
- 2.3.4
+ 2.3.5
com.google.api.grpc
grpc-google-cloud-container-v1beta1
- 2.3.4
+ 2.3.5
com.google.api.grpc
grpc-google-cloud-container-v1
- 2.3.4
+ 2.3.5
com.google.cloud
google-cloud-container
- 2.3.4
+ 2.3.5
com.google.cloud
google-cloud-shared-dependencies
- 2.7.0
+ 2.8.0
pom
import
@@ -132,7 +132,7 @@
org.apache.maven.plugins
maven-project-info-reports-plugin
- 3.2.1
+ 3.2.2
diff --git a/proto-google-cloud-container-v1/pom.xml b/proto-google-cloud-container-v1/pom.xml
index 26493c61..ff04fb4c 100644
--- a/proto-google-cloud-container-v1/pom.xml
+++ b/proto-google-cloud-container-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-cloud-container-v1
- 2.3.4
+ 2.3.5
proto-google-cloud-container-v1
PROTO library for proto-google-cloud-container-v1
com.google.cloud
google-cloud-container-parent
- 2.3.4
+ 2.3.5
diff --git a/proto-google-cloud-container-v1beta1/pom.xml b/proto-google-cloud-container-v1beta1/pom.xml
index d4b0f589..e06c34bd 100644
--- a/proto-google-cloud-container-v1beta1/pom.xml
+++ b/proto-google-cloud-container-v1beta1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-cloud-container-v1beta1
- 2.3.4
+ 2.3.5
proto-google-cloud-container-v1beta1
Proto library for google-cloud-container
com.google.cloud
google-cloud-container-parent
- 2.3.4
+ 2.3.5
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 9acde05e..48e3ae2d 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud
google-cloud-container
- 2.3.3
+ 2.3.4
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index 6271cdde..7d7cef28 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-container
- 2.3.3
+ 2.3.4
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index 3114bcc6..10a583e4 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -30,7 +30,7 @@
com.google.cloud
libraries-bom
- 24.3.0
+ 24.4.0
pom
import
diff --git a/versions.txt b/versions.txt
index da09da18..bc28f242 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,8 +1,8 @@
# Format:
# module:released-version:current-version
-google-cloud-container:2.3.4:2.3.4
-grpc-google-cloud-container-v1:2.3.4:2.3.4
-grpc-google-cloud-container-v1beta1:2.3.4:2.3.4
-proto-google-cloud-container-v1:2.3.4:2.3.4
-proto-google-cloud-container-v1beta1:2.3.4:2.3.4
+google-cloud-container:2.3.5:2.3.5
+grpc-google-cloud-container-v1:2.3.5:2.3.5
+grpc-google-cloud-container-v1beta1:2.3.5:2.3.5
+proto-google-cloud-container-v1:2.3.5:2.3.5
+proto-google-cloud-container-v1beta1:2.3.5:2.3.5