Skip to content

Commit 6a74587

Browse files
chore: generate libraries at Thu Dec 11 21:07:28 UTC 2025
1 parent c2aaa3d commit 6a74587

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
java: [11, 17, 21, 25]
2929
steps:
30-
- uses: actions/checkout@v6
30+
- uses: actions/checkout@v4
3131
- uses: actions/setup-java@v4
3232
with:
3333
distribution: temurin
@@ -41,7 +41,7 @@ jobs:
4141
name: "units (8)"
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v6
44+
- uses: actions/checkout@v4
4545
- uses: actions/setup-java@v4
4646
with:
4747
java-version: 8
@@ -63,7 +63,7 @@ jobs:
6363
steps:
6464
- name: Support longpaths
6565
run: git config --system core.longpaths true
66-
- uses: actions/checkout@v6
66+
- uses: actions/checkout@v4
6767
- uses: actions/setup-java@v4
6868
with:
6969
distribution: temurin
@@ -78,7 +78,7 @@ jobs:
7878
matrix:
7979
java: [17]
8080
steps:
81-
- uses: actions/checkout@v6
81+
- uses: actions/checkout@v4
8282
- uses: actions/setup-java@v4
8383
with:
8484
distribution: temurin
@@ -88,7 +88,7 @@ jobs:
8888
javadoc:
8989
runs-on: ubuntu-latest
9090
steps:
91-
- uses: actions/checkout@v6
91+
- uses: actions/checkout@v4
9292
- uses: actions/setup-java@v4
9393
with:
9494
distribution: temurin
@@ -100,7 +100,7 @@ jobs:
100100
lint:
101101
runs-on: ubuntu-latest
102102
steps:
103-
- uses: actions/checkout@v6
103+
- uses: actions/checkout@v4
104104
- uses: actions/setup-java@v4
105105
with:
106106
distribution: temurin
@@ -112,7 +112,7 @@ jobs:
112112
clirr:
113113
runs-on: ubuntu-latest
114114
steps:
115-
- uses: actions/checkout@v6
115+
- uses: actions/checkout@v4
116116
- uses: actions/setup-java@v4
117117
with:
118118
distribution: temurin

.github/workflows/renovate_config_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v6
14+
uses: actions/checkout@v4
1515

1616
- name: Set up Node.js
1717
uses: actions/setup-node@v4

.github/workflows/samples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
checkstyle:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v4
2424
- uses: actions/setup-java@v4
2525
with:
2626
distribution: temurin

.github/workflows/update_generation_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# the branch into which the pull request is merged
2727
base_branch: main
2828
steps:
29-
- uses: actions/checkout@v6
29+
- uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0
3232
token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>libraries-bom</artifactId>
22-
<version>26.71.0</version>
22+
<version>26.72.0</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>
@@ -66,13 +66,13 @@ implementation 'com.google.cloud:google-cloud-storage'
6666
If you are using Gradle without BOM, add this to your dependencies:
6767

6868
```Groovy
69-
implementation 'com.google.cloud:google-cloud-storage:2.60.0'
69+
implementation 'com.google.cloud:google-cloud-storage:2.61.0'
7070
```
7171

7272
If you are using SBT, add this to your dependencies:
7373

7474
```Scala
75-
libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "2.60.0"
75+
libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "2.61.0"
7676
```
7777

7878
## Authentication
@@ -484,7 +484,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
484484
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-storage/java11.html
485485
[stability-image]: https://img.shields.io/badge/stability-stable-green
486486
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-storage.svg
487-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-storage/2.60.0
487+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-storage/2.61.0
488488
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
489489
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
490490
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

0 commit comments

Comments
 (0)