Skip to content

Commit f843df8

Browse files
committed
Merge branch 'main' into xili9/Release-3.7.4
2 parents caf33f4 + c3732fd commit f843df8

File tree

30 files changed

+79
-50
lines changed

30 files changed

+79
-50
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Copilot Setup Steps
2+
3+
# This workflow pre-installs dependencies for GitHub Copilot coding agent
4+
# to enable faster and more reliable development in Copilot's ephemeral environment.
5+
# See: https://docs.github.com/en/copilot/customizing-copilot/customizing-the-development-environment-for-copilot-coding-agent
6+
7+
# Automatically run the setup steps when they are changed to allow for easy validation,
8+
# and allow manual testing through the repository's "Actions" tab
9+
on:
10+
push:
11+
paths:
12+
- .github/workflows/copilot-setup-steps.yml
13+
pull_request:
14+
paths:
15+
- .github/workflows/copilot-setup-steps.yml
16+
workflow_dispatch:
17+
18+
permissions:
19+
contents: read
20+
21+
jobs:
22+
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
23+
copilot-setup-steps:
24+
runs-on: ubuntu-latest
25+
26+
steps:
27+
- name: Checkout code
28+
uses: actions/checkout@v4
29+
30+
- name: Set up JDK for running Gradle
31+
uses: actions/setup-java@v4
32+
with:
33+
distribution: temurin
34+
java-version: 17
35+
36+
- name: Setup Gradle
37+
uses: gradle/actions/setup-gradle@v4
38+
39+
- name: Populate Gradle caches
40+
run: ./gradlew classes testClasses assemble spotlessApply

agent/agent-bootstrap/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
4+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
55
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
66
io.netty:netty-bom:4.2.3.Final=runtimeClasspath
77
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.18.1-alpha=runtimeClasspath

agent/agent-for-testing/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
4+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
55
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
66
io.netty:netty-bom:4.2.3.Final=runtimeClasspath
77
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.18.1-alpha=runtimeClasspath

agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
4+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
55
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
66
com.google.errorprone:error_prone_annotations:2.41.0=runtimeClasspath
77
io.netty:netty-bom:4.2.3.Final=runtimeClasspath

agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
4+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
55
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
66
com.google.errorprone:error_prone_annotations:2.41.0=runtimeClasspath
77
io.netty:netty-bom:4.2.3.Final=runtimeClasspath

agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
4+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
55
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
66
io.netty:netty-bom:4.2.3.Final=runtimeClasspath
77
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.18.1-alpha=runtimeClasspath

agent/agent-profiler/agent-alerting-api/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
4+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
55
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
66
io.netty:netty-bom:4.2.3.Final=runtimeClasspath
77
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.18.1-alpha=runtimeClasspath

agent/agent-profiler/agent-alerting/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
44
com.azure:azure-json:1.5.0=runtimeClasspath
5-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
5+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
66
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
77
io.netty:netty-bom:4.2.3.Final=runtimeClasspath
88
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.18.1-alpha=runtimeClasspath

agent/agent-profiler/agent-diagnostics-api/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
4+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
55
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
66
io.netty:netty-bom:4.2.3.Final=runtimeClasspath
77
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.18.1-alpha=runtimeClasspath

agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.azure:azure-sdk-bom:1.2.36=runtimeClasspath
4+
com.azure:azure-sdk-bom:1.2.37=runtimeClasspath
55
com.fasterxml.jackson:jackson-bom:2.19.2=runtimeClasspath
66
io.netty:netty-bom:4.2.3.Final=runtimeClasspath
77
io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.18.1-alpha=runtimeClasspath

0 commit comments

Comments
 (0)