Skip to content

Commit f0d09d4

Browse files
authored
Merge branch 'main' into fix/issue-45521-custom-item-serializer
2 parents a881e5b + 8a671dd commit f0d09d4

281 files changed

Lines changed: 12757 additions & 4966 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/post-apiview.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,31 @@ name: After APIView
33
on:
44
check_run:
55
types: [completed]
6-
6+
77
permissions:
88
pull-requests: write
99
contents: read
1010

1111
jobs:
1212
post-apiview:
1313
name: After APIView
14-
runs-on: ["self-hosted", "1ES.Pool=azsdk-pool-github-runners", "JobId=azsdk-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}"]
14+
runs-on:
15+
[
16+
"self-hosted",
17+
"1ES.Pool=azsdk-pool-github-runners",
18+
"JobId=azsdk-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}",
19+
]
1520
if: |
16-
toJson(github.event.check_run.pull_requests) != '[]' &&
1721
github.event.check_run.check_suite.app.name == 'Azure Pipelines' && (
1822
contains(github.event.check_run.name, 'Build Build') ||
19-
contains(github.event.check_run.name, 'Build Analyze') )
23+
contains(github.event.check_run.name, 'Build Analyze') ||
24+
contains(github.event.check_run.name, 'SDK Validation') )
2025
steps:
2126
- name: Checkout
2227
uses: actions/checkout@v6
2328
with:
24-
sparse-checkout: 'eng/common'
25-
29+
sparse-checkout: "eng/common"
30+
2631
- name: Create APIView Comment on PR
2732
run: |
2833
. "eng/common/scripts/Helpers/ApiView-Helpers.ps1"

common/perf-test-core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
<includes combine.children="append">
5656
<!-- Special allowance for performance libraries as they aren't shipped. -->
5757
<include>com.beust:jcommander:[1.82]</include> <!-- {x-include-update;com.beust:jcommander;external_dependency} -->
58-
<include>io.vertx:vertx-codegen:[4.5.23]</include> <!-- {x-include-update;io.vertx:vertx-codegen;external_dependency} -->
59-
<include>io.projectreactor:reactor-core:[3.7.14]</include> <!-- {x-include-update;io.projectreactor:reactor-core;external_dependency} -->
58+
<include>io.vertx:vertx-codegen:[4.5.26]</include> <!-- {x-include-update;io.vertx:vertx-codegen;external_dependency} -->
59+
<include>io.projectreactor:reactor-core:[3.7.17]</include> <!-- {x-include-update;io.projectreactor:reactor-core;external_dependency} -->
6060
</includes>
6161
</bannedDependencies>
6262
</rules>
@@ -94,7 +94,7 @@
9494
<dependency>
9595
<groupId>io.vertx</groupId>
9696
<artifactId>vertx-codegen</artifactId>
97-
<version>4.5.23</version> <!-- {x-version-update;io.vertx:vertx-codegen;external_dependency} -->
97+
<version>4.5.26</version> <!-- {x-version-update;io.vertx:vertx-codegen;external_dependency} -->
9898
<scope>provided</scope>
9999
</dependency>
100100
<dependency>

eng/bomgenerator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>com.fasterxml.jackson.dataformat</groupId>
4040
<artifactId>jackson-dataformat-xml</artifactId>
41-
<version>2.18.4</version> <!-- {x-version-update;com.fasterxml.jackson.dataformat:jackson-dataformat-xml;external_dependency} -->
41+
<version>2.18.6</version> <!-- {x-version-update;com.fasterxml.jackson.dataformat:jackson-dataformat-xml;external_dependency} -->
4242
</dependency>
4343
</dependencies>
4444
<build>

eng/common/pipelines/templates/steps/create-tags-and-git-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ steps:
2525
timeoutInMinutes: 5
2626
env:
2727
GH_TOKEN: $(azuresdk-github-pat)
28+
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
2829
${{ if ne(parameters.NpmConfigUserConfig, '') }}:
2930
NPM_CONFIG_USERCONFIG: ${{ parameters.NpmConfigUserConfig }}
3031
${{ if ne(parameters.NpmConfigRegistry, '') }}:

eng/common/pipelines/templates/steps/publish-blobs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ steps:
2626
pwsh: true
2727
env:
2828
AZCOPY_AUTO_LOGIN_TYPE: 'PSCRED'
29+
SYSTEM_ACCESSTOKEN: $(System.AccessToken)

0 commit comments

Comments
 (0)