Skip to content

Commit 7345caa

Browse files
authored
Merge pull request #2894 from microsoft/dependabot/github_actions/actions/checkout-7
chore(deps): bump actions/checkout from 6 to 7
2 parents 68e16e8 + 4d8429c commit 7345caa

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Checkout repository
3131
id: checkout_repo
32-
uses: actions/checkout@v6
32+
uses: actions/checkout@v7
3333
with:
3434
ref: ${{ github.event.pull_request.head.sha || github.sha }}
3535
token: ${{ secrets.GITHUB_TOKEN }}
@@ -80,7 +80,7 @@ jobs:
8080
name: Validate Project for Trimming
8181
runs-on: windows-latest
8282
steps:
83-
- uses: actions/checkout@v6
83+
- uses: actions/checkout@v7
8484

8585
- name: Setup .NET 8
8686
uses: actions/setup-dotnet@v5
@@ -102,7 +102,7 @@ jobs:
102102
needs: [ci]
103103
steps:
104104
- name: Checkout repository
105-
uses: actions/checkout@v6
105+
uses: actions/checkout@v7
106106

107107
- name: Setup .NET 8
108108
uses: actions/setup-dotnet@v5

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Checkout repository
2222
id: checkout_repo
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424

2525
- name: Setup .NET 8
2626
uses: actions/setup-dotnet@v5

.github/workflows/promote-shipped-apis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }}
2323

2424
- name: Checkout code
25-
uses: actions/checkout@v6
25+
uses: actions/checkout@v7
2626
with:
2727
fetch-depth: 0
2828
token: ${{ steps.app-token.outputs.token }}

.github/workflows/release-please-gha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
if: needs.check-secret.outputs.has-token == 'true'
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v6
37+
- uses: actions/checkout@v7
3838

3939
- name: Validate PublicAPI.Unshipped.txt files are empty
4040
shell: pwsh

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/setup-dotnet@v5
4848
with:
4949
dotnet-version: 10.0.x
50-
- uses: actions/checkout@v6
50+
- uses: actions/checkout@v7
5151
with:
5252
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
5353
- name: Cache SonarCloud packages

0 commit comments

Comments
 (0)