Skip to content

Commit f5cda56

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 eec5c75 commit f5cda56

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/next-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
builder_required: ${{ steps.check.outputs.builder_required }}
3737
steps:
3838
- name: Checkout Repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 2 # Ensure we have at least one previous commit for diff check
4242

@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-24.04
5757

5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
with:
6161
fetch-depth: 0
6262

@@ -107,7 +107,7 @@ jobs:
107107
needs: builder-image
108108

109109
steps:
110-
- uses: actions/checkout@v5
110+
- uses: actions/checkout@v6
111111
with:
112112
fetch-depth: 0
113113

.github/workflows/pr-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040

4141
- uses: pnpm/action-setup@v4
4242
name: Install pnpm

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
releaseId: ${{ steps.create_release.outputs.id}}
5050

5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
with:
5454
ref: ${{ github.event.inputs.branch }}
5555
- name: Generate tag utilities
@@ -123,7 +123,7 @@ jobs:
123123
needs: tag
124124
runs-on: ubuntu-24.04
125125
steps:
126-
- uses: actions/checkout@v5
126+
- uses: actions/checkout@v6
127127
with:
128128
ref: ${{ needs.tag.outputs.githubTag }}
129129

@@ -174,7 +174,7 @@ jobs:
174174
needs: [builder-image, tag]
175175

176176
steps:
177-
- uses: actions/checkout@v5
177+
- uses: actions/checkout@v6
178178
with:
179179
ref: ${{ needs.tag.outputs.githubTag }}
180180

0 commit comments

Comments
 (0)