Skip to content

Commit b2f68cb

Browse files
authoredJul 13, 2022
fix: enable longpaths support for windows test (#1485) (#995)
Source-Link: googleapis/synthtool@7336562 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:d4b80feffe1579818cdc39466152e9de95789a193408506cd4a1ffbe8804dc00
1 parent 71dc1ee commit b2f68cb

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed
 

Diff for: ‎.github/.OwlBot.lock.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16-
digest: sha256:6d4e3a15c62cfdcb823d60e16da7521e7c6fc00eba07c8ff12e4de9924a57d28
17-
# created: 2022-06-29T23:17:33.110417661Z
16+
digest: sha256:d4b80feffe1579818cdc39466152e9de95789a193408506cd4a1ffbe8804dc00
17+
# created: 2022-07-13T13:53:17.676447481Z

Diff for: ‎.github/workflows/ci.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
windows:
4040
runs-on: windows-latest
4141
steps:
42+
- name: Support longpaths
43+
run: git config --system core.longpaths true
4244
- uses: actions/checkout@v3
4345
- uses: actions/setup-java@v3
4446
with:

Diff for: ‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Java idiomatic client for [Cloud Logging][product-docs].
1111

1212
## Quickstart
1313

14-
If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
14+
If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
1515

1616
```xml
1717
<dependencyManagement>
@@ -48,20 +48,20 @@ If you are using Maven without BOM, add this to your dependencies:
4848

4949
```
5050

51-
If you are using Gradle 5.x or later, add this to your dependencies
51+
If you are using Gradle 5.x or later, add this to your dependencies:
5252

5353
```Groovy
54-
implementation platform('com.google.cloud:libraries-bom:25.4.0')
54+
implementation platform('com.google.cloud:libraries-bom:26.0.0')
5555
5656
implementation 'com.google.cloud:google-cloud-logging'
5757
```
58-
If you are using Gradle without BOM, add this to your dependencies
58+
If you are using Gradle without BOM, add this to your dependencies:
5959

6060
```Groovy
6161
implementation 'com.google.cloud:google-cloud-logging:3.10.0'
6262
```
6363

64-
If you are using SBT, add this to your dependencies
64+
If you are using SBT, add this to your dependencies:
6565

6666
```Scala
6767
libraryDependencies += "com.google.cloud" % "google-cloud-logging" % "3.10.0"

0 commit comments

Comments
 (0)