Skip to content

Commit 4f70a6e

Browse files
committed
Merge branch 'main' into file-metrics
2 parents df6fc6c + 1448491 commit 4f70a6e

File tree

23 files changed

+104
-60
lines changed

23 files changed

+104
-60
lines changed

.github/renovate.json5

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,19 @@
1111
// https://github.com/renovatebot/renovate/discussions/8399#discussioncomment-305798
1212
"separateMinorPatch": true,
1313
"packageRules": [
14+
{
15+
// this is to reduce the number of renovate PRs by consolidating them into a weekly batch
16+
"matchManagers": ["github-actions"],
17+
"extends": ["schedule:weekly"],
18+
"groupName": "github actions",
19+
"separateMinorPatch": false // overrides separateMinorPatch specified above
20+
},
1421
{
1522
"matchPackageNames": [
1623
"io.opentelemetry.contrib:opentelemetry-aws-resources",
1724
"io.opentelemetry.contrib:opentelemetry-aws-xray-propagator",
1825
"io.opentelemetry.contrib:opentelemetry-gcp-resources",
26+
"io.opentelemetry.contrib:opentelemetry-baggage-processor",
1927
"io.opentelemetry.proto:opentelemetry-proto",
2028
"io.opentelemetry.semconv:opentelemetry-semconv"
2129
],

.github/workflows/build-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
then
9494
echo "Licenses are up-to-date."
9595
else
96-
echo "Licenses are not up-to-date, please run './gradlew generateLicenseReport' locally and commit."
96+
echo "Licenses are not up-to-date, please run './gradlew generateLicenseReport --no-build-cache' locally and commit."
9797
echo
9898
echo "$(git diff --cached --stat licenses)"
9999
echo

.github/workflows/codeql-daily.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
java-version-file: .java-version
3131

3232
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@4fa2a7953630fd2f3fb380f21be14ede0169dd4f # v3.25.12
33+
uses: github/codeql-action/init@2d790406f505036ef40ecba973cc774a50395aac # v3.25.13
3434
with:
3535
languages: java
3636
# using "latest" helps to keep up with the latest Kotlin support
@@ -45,7 +45,7 @@ jobs:
4545
run: ./gradlew assemble -x javadoc --no-build-cache --no-daemon
4646

4747
- name: Perform CodeQL analysis
48-
uses: github/codeql-action/analyze@4fa2a7953630fd2f3fb380f21be14ede0169dd4f # v3.25.12
48+
uses: github/codeql-action/analyze@2d790406f505036ef40ecba973cc774a50395aac # v3.25.13
4949

5050
workflow-notification:
5151
needs:

.github/workflows/publish-smoke-test-servlet-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
java-version-file: .java-version
6161

6262
- name: Login to GitHub package registry
63-
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
63+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
6464
with:
6565
registry: ghcr.io
6666
username: ${{ github.repository_owner }}

.github/workflows/reusable-smoke-test-images.yml

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

5252
- name: Login to GitHub package registry
5353
if: inputs.publish
54-
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
54+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
5555
with:
5656
registry: ghcr.io
5757
username: ${{ github.repository_owner }}

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ jobs:
6464

6565
# Upload the results to GitHub's code scanning dashboard.
6666
- name: "Upload to code-scanning"
67-
uses: github/codeql-action/upload-sarif@4fa2a7953630fd2f3fb380f21be14ede0169dd4f # v3.25.12
67+
uses: github/codeql-action/upload-sarif@2d790406f505036ef40ecba973cc774a50395aac # v3.25.13
6868
with:
6969
sarif_file: results.sarif

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Unreleased
44

5-
## Version 2.6.0 (2024-07-16)
5+
## Version 2.6.0 (2024-07-17)
66

77
The Spring Boot Starter (`opentelemetry-spring-boot-starter`) is now stable.
88

benchmark-overhead-jmh/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
dependencies {
11-
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.3.1")
11+
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.3.2")
1212
}
1313

1414
tasks {

benchmark-overhead/Dockerfile-petclinic-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN git checkout 8aa4d49
1313
RUN ./mvnw package -Dmaven.test.skip=true
1414
RUN cp target/spring-petclinic-rest*.jar /app/spring-petclinic-rest.jar
1515

16-
FROM bellsoft/liberica-openjdk-alpine:21.0.3
16+
FROM bellsoft/liberica-openjdk-alpine:21.0.4
1717
COPY --from=app-build /app/spring-petclinic-rest.jar /app/spring-petclinic-rest.jar
1818
WORKDIR /app
1919
EXPOSE 9966

benchmark-overhead/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ repositories {
1818
dependencies {
1919
implementation(enforcedPlatform("org.junit:junit-bom:5.10.3"))
2020

21-
testImplementation("org.testcontainers:testcontainers:1.19.8")
22-
testImplementation("org.testcontainers:postgresql:1.19.8")
21+
testImplementation("org.testcontainers:testcontainers:1.20.0")
22+
testImplementation("org.testcontainers:postgresql:1.20.0")
2323
testImplementation("org.junit.jupiter:junit-jupiter-api")
2424
testImplementation("org.junit.jupiter:junit-jupiter-params")
2525
testImplementation("com.squareup.okhttp3:okhttp:4.12.0")

0 commit comments

Comments
 (0)