Skip to content

Commit 85184ef

Browse files
chore(deps): bump actions/checkout from 4 to 5 (#593)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent fa8a073 commit 85184ef

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@v4
28+
uses: actions/checkout@v5
2929

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

.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@v4
16+
- uses: actions/checkout@v5
1717
- name: Setup dotnet
1818
uses: actions/setup-dotnet@v4
1919
with:
@@ -40,7 +40,7 @@ jobs:
4040
working-directory: playground/Coalesce.Web.Vue3
4141

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

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

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

7070
- run: npm ci
7171
working-directory: ${{ github.workspace }}
@@ -103,7 +103,7 @@ jobs:
103103
COALESCE_VERSION: ${{inputs.COALESCE_VERSION}}
104104

105105
steps:
106-
- uses: actions/checkout@v4
106+
- uses: actions/checkout@v5
107107

108108
- run: npm ci
109109
working-directory: ${{ github.workspace }}
@@ -131,7 +131,7 @@ jobs:
131131
working-directory: docs
132132

133133
steps:
134-
- uses: actions/checkout@v4
134+
- uses: actions/checkout@v5
135135
with:
136136
# fetch all commits to get last updated time or other git log info
137137
fetch-depth: 0
@@ -157,7 +157,7 @@ jobs:
157157
working-directory: docs
158158

159159
steps:
160-
- uses: actions/checkout@v4
160+
- uses: actions/checkout@v5
161161

162162
- run: npm ci
163163
# working-directory: ${{ github.workspace }}
@@ -199,7 +199,7 @@ jobs:
199199
COALESCE_VERSION: ${{ inputs.COALESCE_VERSION }}
200200

201201
steps:
202-
- uses: actions/checkout@v4
202+
- uses: actions/checkout@v5
203203

204204
- name: Setup dotnet
205205
uses: actions/setup-dotnet@v4

.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@v4
23+
- uses: actions/checkout@v5
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@v4
24+
- uses: actions/checkout@v5
2525

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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
needs: [meta, publish]
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
- uses: rickstaa/action-create-tag@v1
4444
if: ${{ success() && !inputs.prereleaseSlug }}
4545
with:

0 commit comments

Comments
 (0)