Skip to content

Commit db608bf

Browse files
committed
Merge remote-tracking branch 'upstream/main' into update-repo-settings
2 parents 9a9adb3 + d4f9c1e commit db608bf

File tree

8 files changed

+32
-21
lines changed

8 files changed

+32
-21
lines changed

.github/workflows/assign-reviewers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
pull-requests: write # for assigning reviewers
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: open-telemetry/assign-reviewers-action@41a631b3741852734aa35aa6068fbb546b7a62c3 # main
21+
- uses: open-telemetry/assign-reviewers-action@ab8aca8056f3b5af18282b54baa57a852c47abf8 # main
2222
with:
2323
config-file: .github/component_owners.yml

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424

2525
- name: Set up JDK for running Gradle
26-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
26+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2727
with:
2828
distribution: temurin
2929
java-version: 17
@@ -52,14 +52,14 @@ jobs:
5252

5353
- id: setup-test-java
5454
name: Set up JDK ${{ matrix.test-java-version }} for running tests
55-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
55+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
5656
with:
5757
# using zulu because new releases get published quickly
5858
distribution: zulu
5959
java-version: ${{ matrix.test-java-version }}
6060

6161
- name: Set up JDK for running Gradle
62-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
62+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
6363
with:
6464
distribution: temurin
6565
java-version: 17
@@ -81,7 +81,7 @@ jobs:
8181
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
8282

8383
- name: Set up JDK for running Gradle
84-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
84+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
8585
with:
8686
distribution: temurin
8787
java-version: 17
@@ -133,7 +133,7 @@ jobs:
133133
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
134134

135135
- name: Set up JDK for running Gradle
136-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
136+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
137137
with:
138138
distribution: temurin
139139
java-version: 17
@@ -153,7 +153,7 @@ jobs:
153153
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }}
154154

155155
required-status-check:
156-
if: github.event_name == 'pull_request' && always()
156+
if: (github.event_name == 'pull_request' || github.event_name == 'merge_group') && always()
157157
needs:
158158
- build
159159
- test

.github/workflows/codeql.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ on:
66
- main
77
- release/*
88
pull_request:
9-
merge_group:
9+
# TODO (trask) adding this to the merge queue causes the merge queue to fail
10+
# see related issues
11+
# - https://github.com/github/codeql-action/issues/1572
12+
# - https://github.com/github/codeql-action/issues/1537
13+
# - https://github.com/github/codeql-action/issues/2691
14+
# merge_group:
1015
schedule:
1116
- cron: "29 13 * * 2" # weekly at 13:29 UTC on Tuesday
1217

@@ -24,7 +29,7 @@ jobs:
2429
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2530

2631
- name: Set up Java 17
27-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
32+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2833
with:
2934
distribution: temurin
3035
java-version: 17
@@ -33,7 +38,7 @@ jobs:
3338
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
3439

3540
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
41+
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
3742
with:
3843
languages: java, actions
3944
# using "latest" helps to keep up with the latest Kotlin support
@@ -47,4 +52,4 @@ jobs:
4752
run: ./gradlew assemble --no-build-cache --no-daemon
4853

4954
- name: Perform CodeQL analysis
50-
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
55+
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
# Upload the results to GitHub's code scanning dashboard (optional).
4343
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
45+
uses: github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
4646
with:
4747
sarif_file: results.sarif

.github/workflows/owasp-dependency-check-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919

2020
- name: Set up JDK for running Gradle
21-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
21+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2222
with:
2323
distribution: temurin
2424
java-version: 17

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1313

1414
- name: Set up JDK for running Gradle
15-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
15+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
1616
with:
1717
distribution: temurin
1818
java-version: 17
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3636

3737
- name: Set up JDK for running Gradle
38-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
38+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
3939
with:
4040
distribution: temurin
4141
java-version: 17
@@ -118,7 +118,7 @@ jobs:
118118
fetch-depth: 0
119119

120120
- name: Set up JDK for running Gradle
121-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
121+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
122122
with:
123123
distribution: temurin
124124
java-version: 17

gcp-auth-extension/README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,20 @@ These credentials are built-in running in a Google App Engine, Google Cloud Shel
3232

3333
The extension can be configured either by environment variables or system properties.
3434

35-
Here is a list of configurable options for the extension:
35+
Here is a list of required and optional configuration available for the extension:
36+
37+
#### Required Config
3638

3739
- `GOOGLE_CLOUD_PROJECT`: Environment variable that represents the Google Cloud Project ID to which the telemetry needs to be exported.
40+
3841
- Can also be configured using `google.cloud.project` system property.
3942
- This is a required option, the agent configuration will fail if this option is not set.
40-
- `GOOGLE_CLOUD_QUOTA_PROJECT`: Environment variable that represents the Google Cloud Quota Project ID which will be charged for the GCP API usage. To learn more about a *quota project*, see [here](https://cloud.google.com/docs/quotas/quota-project).
43+
44+
#### Optional Config
45+
46+
- `GOOGLE_CLOUD_QUOTA_PROJECT`: Environment variable that represents the Google Cloud Quota Project ID which will be charged for the GCP API usage. To learn more about a *quota project*, see [here](https://cloud.google.com/docs/quotas/quota-project). Additional details about configuring the *quota project* can be found [here](https://cloud.google.com/docs/quotas/set-quota-project).
47+
4148
- Can also be configured using `google.cloud.quota.project` system property.
42-
- If this option is not configured, the extension will use the Quota Project ID found in the Application Default Credentials (ADC), if available. For more information on application default credentials, see [here](https://cloud.google.com/docs/authentication/application-default-credentials).
4349

4450
## Usage
4551

micrometer-meter-provider/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ dependencies {
2020
annotationProcessor("com.google.auto.value:auto-value")
2121
compileOnly("com.google.auto.value:auto-value-annotations")
2222

23-
testImplementation("io.micrometer:micrometer-core:1.14.5")
23+
testImplementation("io.micrometer:micrometer-core:1.14.6")
2424
}
2525

2626
testing {
2727
suites {
2828
val integrationTest by registering(JvmTestSuite::class) {
2929
dependencies {
30-
implementation("io.micrometer:micrometer-registry-prometheus:1.14.5")
30+
implementation("io.micrometer:micrometer-registry-prometheus:1.14.6")
3131
}
3232
}
3333
}

0 commit comments

Comments
 (0)