Skip to content

Commit f429935

Browse files
chore(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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] <[email protected]>
1 parent 4c6f364 commit f429935

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/copilot-setup-steps.yml

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

2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Setup dotnet
3131
uses: actions/setup-dotnet@v5

.github/workflows/part-build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
COALESCE_VERSION: ${{inputs.COALESCE_VERSION}}
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Setup dotnet
1818
uses: actions/setup-dotnet@v5
1919
with:
@@ -40,7 +40,7 @@ jobs:
4040
working-directory: playground/Coalesce.Web.Vue3
4141

4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444

4545
- uses: actions/setup-dotnet@v5
4646
with:
@@ -65,7 +65,7 @@ jobs:
6565
COALESCE_VERSION: ${{inputs.COALESCE_VERSION}}
6666

6767
steps:
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969

7070
# setup-node and update npm are only here to preemptively test
7171
# the required install of npm@11 that's needed for OIDC npm publish
@@ -113,7 +113,7 @@ jobs:
113113
COALESCE_VERSION: ${{inputs.COALESCE_VERSION}}
114114

115115
steps:
116-
- uses: actions/checkout@v5
116+
- uses: actions/checkout@v6
117117

118118
- run: npm ci
119119
working-directory: ${{ github.workspace }}
@@ -144,7 +144,7 @@ jobs:
144144
COALESCE_VERSION: ${{inputs.COALESCE_VERSION}}
145145

146146
steps:
147-
- uses: actions/checkout@v5
147+
- uses: actions/checkout@v6
148148

149149
- run: npm ci
150150
working-directory: ${{ github.workspace }}
@@ -172,7 +172,7 @@ jobs:
172172
working-directory: docs
173173

174174
steps:
175-
- uses: actions/checkout@v5
175+
- uses: actions/checkout@v6
176176
with:
177177
# fetch all commits to get last updated time or other git log info
178178
fetch-depth: 0
@@ -217,7 +217,7 @@ jobs:
217217
COALESCE_VERSION: ${{ inputs.COALESCE_VERSION }}
218218

219219
steps:
220-
- uses: actions/checkout@v5
220+
- uses: actions/checkout@v6
221221

222222
- name: Setup dotnet
223223
uses: actions/setup-dotnet@v5

.github/workflows/part-compute-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
COALESCE_VERSION: ${{ steps.version.outputs.COALESCE_VERSION }}
2121

2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424

2525
- name: "Verify and set COALESCE_VERSION variable"
2626
id: version

.github/workflows/part-template-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
COALESCE_VERSION: ${{inputs.COALESCE_VERSION}}
2222

2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525

2626
- name: Setup dotnet
2727
uses: actions/setup-dotnet@v5

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
needs: [meta, publish]
5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
- uses: rickstaa/action-create-tag@v1
6161
if: ${{ success() && !inputs.prereleaseSlug }}
6262
with:

0 commit comments

Comments
 (0)