Skip to content

Commit f003200

Browse files
authored
Merge pull request #28750 from microsoftgraph/main
Merge to publish.
2 parents 30b3ed8 + b2e3e30 commit f003200

20 files changed

Lines changed: 97 additions & 125 deletions

.github/prompts/author-api-docs/public-preview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,8 @@ When API changes involve adding new properties or relationships to an existing r
324324

325325
5. **Optional query parameters section (for GET/LIST files):**
326326
- Update the boilerplate text to specify whether all, some (which ones), or no OData query parameters are supported
327-
- Format OData query parameters in Markdown code font: `$filter`, `$select`, `$expand`, `$top`, `$orderby`, `$search`
328-
- Document supported operators for `$filter` using format: `$filter` (`eq`, `ne`)
327+
- Format OData query parameters in Markdown code font: `$filter` (`eq`, `ne`), `$select`, `$expand`, `$top`, `$orderby`, `$search`
328+
- `$filter` must include supported operators, which is a summary of callouts within all property descriptions on the resource page.
329329

330330
6. **Request headers section:**
331331
- Keep unchanged

.github/workflows/api-doctor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
# Also required by Windows
2727
- run: git config --global core.longpaths true
2828
- name: Checkout docs repo
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
- name: Setup .NET
3131
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: |
3434
6.x
3535
8.x
3636
- name: Install NuGet
37-
uses: NuGet/setup-nuget@v2
37+
uses: NuGet/setup-nuget@v4
3838
- name: Install ApiDoctor from NuGet
3939
run: nuget install ApiDoctor -Version $Env:APIDOCTOR_VERSION -OutputDirectory ./nuget -NonInteractive -DisableParallelProcessing
4040
- name: Validate v1.0 docs

.github/workflows/changelog-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
verify-json-validation:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Validate Changelog JSONs with Schema
1414
run: |
1515
./scripts/validate-changelog-json.ps1

.github/workflows/cloud-support.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout docs repo
19-
uses: actions/checkout@v4.1.3
19+
uses: actions/checkout@v6
2020
with:
2121
path: docs
2222
- name: Checkout metadata repo
23-
uses: actions/checkout@v4.1.3
23+
uses: actions/checkout@v6
2424
with:
2525
repository: microsoftgraph/msgraph-metadata
2626
path: metadata
2727
- name: Checkout tool repo
28-
uses: actions/checkout@v4.1.3
28+
uses: actions/checkout@v6
2929
with:
3030
repository: microsoftgraph/msgraph-cloud-support
3131
path: tool
3232
- name: Setup .NET
33-
uses: actions/setup-dotnet@v4
33+
uses: actions/setup-dotnet@v5
3434
with:
3535
dotnet-version: 10.x
3636
- name: Build cloud support tool

.github/workflows/community.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
GH_TOKEN: ${{ github.token }}
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- run: gh pr edit ${{ github.event.number }} --milestone "Community Contributions"

.github/workflows/generate-ref-toc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@ jobs:
3131
result: ${{ steps.commit-if-needed.outputs.result }}
3232
steps:
3333
- name: Checkout docs repo
34-
uses: actions/checkout@v4.1.3
34+
uses: actions/checkout@v6
3535
with:
3636
ref: ${{ inputs.target }}
3737
path: docs
3838
- name: Checkout tool repo
39-
uses: actions/checkout@v4.1.3
39+
uses: actions/checkout@v6
4040
with:
4141
repository: microsoftgraph/msgraph-toc-gen
4242
path: tool
4343
- name: Setup .NET
44-
uses: actions/setup-dotnet@v4
44+
uses: actions/setup-dotnet@v5
4545
with:
4646
dotnet-version: 10.x
4747
- name: Build TOC generation tool

.github/workflows/permissions-reference-gen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
run: git config --system core.longpaths true
2121

2222
- name: Checkout microsoft-graph-docs
23-
uses: actions/checkout@v4.1.3
23+
uses: actions/checkout@v6
2424
with:
2525
path: docs
2626

2727
- name: Azure Login using Federated Identity
28-
uses: azure/login@v2
28+
uses: azure/login@v3
2929
with:
3030
client-id: ${{ secrets.GRAPHPERMISSIONSREFERENCE_CLIENT_ID }}
3131
tenant-id: ${{ secrets.GRAPHPERMISSIONSREFERENCE_TENANT_ID }}

.github/workflows/permissions-tables-generation-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest # https://github.com/actions/virtual-environments/blob/master/images/linux/Ubuntu1804-README.md
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 10 # number of commits to fetch so that we can query history
2727

.github/workflows/snippet-generation-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest # https://github.com/actions/virtual-environments/blob/master/images/linux/Ubuntu1804-README.md
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 10 # number of commits to fetch so that we can query history
2828

.github/workflows/temp-docstubs-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
verify-temp-docstubs:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Validate temp-docstubs folder
1414
run: |
1515
./scripts/validate-temp-docstubs.ps1

0 commit comments

Comments
 (0)