Skip to content

Commit 2da119f

Browse files
build(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 823c876 commit 2da119f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
create-nuget:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
4141

@@ -117,7 +117,7 @@ jobs:
117117

118118
steps:
119119
- name: 🛒 Checkout repository
120-
uses: actions/checkout@v5
120+
uses: actions/checkout@v6
121121
with:
122122
fetch-depth: 0
123123

@@ -151,7 +151,7 @@ jobs:
151151
runs-on: ubuntu-latest
152152
needs: [ create-nuget ]
153153
steps:
154-
- uses: actions/checkout@v5
154+
- uses: actions/checkout@v6
155155
with:
156156
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
157157

@@ -211,7 +211,7 @@ jobs:
211211
runs-on: ubuntu-latest
212212
steps:
213213
- name: 🛒 Checkout repository
214-
uses: actions/checkout@v5
214+
uses: actions/checkout@v6
215215
with:
216216
fetch-depth: 0
217217

@@ -264,7 +264,7 @@ jobs:
264264
if: github.event_name == 'pull_request' && github.repository_owner == 'bunit-dev'
265265
steps:
266266
- name: 'Checkout Repository'
267-
uses: actions/checkout@v5
267+
uses: actions/checkout@v6
268268
- name: 'Dependency Review'
269269
uses: actions/dependency-review-action@v4
270270

.github/workflows/docs-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131

3232
- name: 🛒 Checkout repository
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636
token: ${{ secrets.BUNIT_BOT_TOKEN }}

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.ref == 'refs/heads/main' && contains(fromJson('["major","minor"]'), github.event.inputs.versionIncrement)
1717
steps:
1818
- name: 🛒 Checkout repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
token: ${{ secrets.BUNIT_BOT_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232

3333
- name: 🛒 Checkout repository
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 0
3737
token: ${{ secrets.BUNIT_BOT_TOKEN }}

0 commit comments

Comments
 (0)