Skip to content

Commit 3cb8977

Browse files
authored
Merge pull request #759 from microsoft/dependabot/github_actions/actions/checkout-6
chore(deps): bump actions/checkout from 5 to 6
2 parents 0276f58 + 6076e8d commit 3cb8977

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
4545
- name: Checkout repository
4646
id: checkout_repo
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
token: ${{ secrets.GITHUB_TOKEN }}
5050
fetch-depth: 0

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Setup .NET
4545
uses: actions/setup-dotnet@v5

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Generate GitHub App token
3131
id: app-token

.github/workflows/sonarcloud.yml

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

.github/workflows/validate-descriptions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
outputs:
1414
matrix: ${{ steps.set-descriptions.outputs.matrix }}
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- id: set-descriptions
1818
run: echo "::set-output name=matrix::$(ls test/**/Resources/*.{json,yaml} | sed 's/.*\///' | jq -R -s -c 'split("\n")[:-1]')"
1919

@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
submodules: recursive
3232

0 commit comments

Comments
 (0)