Skip to content

Commit 145466f

Browse files
Bump actions/checkout from 4 to 6 (#9879)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent faf13f6 commit 145466f

9 files changed

Lines changed: 12 additions & 12 deletions

.github/workflows/api-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ 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:

.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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ 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

.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ 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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ 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

.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)