Skip to content

Commit e921991

Browse files
committed
Merge branch 'main' into mds-cred-token-req-param
2 parents 838380f + 1963f0c commit e921991

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/sonar.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
build:
1010
name: Build
1111
runs-on: ubuntu-22.04
12+
# Sonar Token can't be passed to PRs from forks. Disable Sonar workflow unless PR is from a branch.
13+
if: github.event.pull_request.head.repo.full_name == github.repository
1214
steps:
1315
- uses: actions/checkout@v4
1416
with:

.kokoro/presubmit/graalvm-native-a.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ env_vars: {
4444
}
4545

4646
container_properties {
47-
docker_image: "us-docker.pkg.dev/java-graalvm-ci-prod/graalvm-integration-testing/graalvm_a:1.12.3"
47+
docker_image: "us-docker.pkg.dev/java-graalvm-ci-prod/graalvm-integration-testing/graalvm_a:1.13.0"
4848
}
4949

.kokoro/presubmit/graalvm-native-b.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ env_vars: {
4444
}
4545

4646
container_properties {
47-
docker_image: "us-docker.pkg.dev/java-graalvm-ci-prod/graalvm-integration-testing/graalvm_b:1.12.3"
47+
docker_image: "us-docker.pkg.dev/java-graalvm-ci-prod/graalvm-integration-testing/graalvm_b:1.13.0"
4848
}

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>com.google.cloud</groupId>
1818
<artifactId>google-cloud-shared-config</artifactId>
19-
<version>1.12.3</version>
19+
<version>1.13.0</version>
2020
</parent>
2121

2222
<distributionManagement>
@@ -69,9 +69,9 @@
6969

7070
<properties>
7171
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
72-
<project.google.http.version>1.45.2</project.google.http.version>
72+
<project.google.http.version>1.45.3</project.google.http.version>
7373
<project.junit.version>4.13.2</project.junit.version>
74-
<project.guava.version>33.3.1-android</project.guava.version>
74+
<project.guava.version>33.4.0-android</project.guava.version>
7575
<project.appengine.version>2.0.31</project.appengine.version>
7676
<project.findbugs.version>3.0.2</project.findbugs.version>
7777
<deploy.autorelease>false</deploy.autorelease>

samples/snippets/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
<dependency>
4444
<groupId>com.google.auth</groupId>
4545
<artifactId>google-auth-library-oauth2-http</artifactId>
46-
<version>1.30.0</version>
46+
<version>1.30.1</version>
4747
</dependency>
4848

4949
<!-- IAM dependency-->
5050
<dependency>
5151
<groupId>com.google.cloud</groupId>
5252
<artifactId>google-iam-admin</artifactId>
53-
<version>3.49.0</version>
53+
<version>3.50.0</version>
5454
</dependency>
5555

5656
<!-- GCloud dependency-->

0 commit comments

Comments
 (0)