Skip to content

Commit 6d47b5b

Browse files
chore(deps): bump actions/checkout from 4 to 6 (#120)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5af8317 commit 6d47b5b

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
NODE_OPTIONS: "--max-old-space-size=12288"
2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
token: ${{ secrets.GITHUB_TOKEN }}
2828

.github/workflows/cli-release.yml

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

4545
steps:
4646
- name: Checkout code
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848
with:
4949
ref: ${{ github.event.inputs.tag || github.ref }}
5050

.github/workflows/cli-semantic-release.yml

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

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0
2929
persist-credentials: false

.github/workflows/docs-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout code
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333

3434
- name: Set lowercase repo name
3535
run: echo "REPO_LC=$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
@@ -61,7 +61,7 @@ jobs:
6161

6262
steps:
6363
- name: Checkout code
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v6
6565

6666
- name: Set lowercase repo name
6767
run: echo "REPO_LC=$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV

.github/workflows/packages-release.yml

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

3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Checkout code
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v6
5151

5252
- name: Set lowercase repo name
5353
run: echo "REPO_LC=$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
@@ -98,7 +98,7 @@ jobs:
9898

9999
steps:
100100
- name: Checkout code
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@v6
102102

103103
- name: Set lowercase repo name
104104
run: echo "REPO_LC=$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
@@ -157,7 +157,7 @@ jobs:
157157

158158
steps:
159159
- name: Checkout code
160-
uses: actions/checkout@v4
160+
uses: actions/checkout@v6
161161
with:
162162
fetch-depth: 0 # Need full history to get all tags
163163

@@ -219,7 +219,7 @@ jobs:
219219

220220
steps:
221221
- name: Checkout code
222-
uses: actions/checkout@v4
222+
uses: actions/checkout@v6
223223
with:
224224
ref: ${{ github.event.inputs.tag }}
225225

@@ -267,7 +267,7 @@ jobs:
267267

268268
steps:
269269
- name: Checkout code
270-
uses: actions/checkout@v4
270+
uses: actions/checkout@v6
271271
with:
272272
ref: ${{ github.event.inputs.tag }}
273273

@@ -333,7 +333,7 @@ jobs:
333333
password: ${{ secrets.GITHUB_TOKEN }}
334334

335335
- name: Checkout code
336-
uses: actions/checkout@v4
336+
uses: actions/checkout@v6
337337
with:
338338
fetch-depth: 0
339339

.github/workflows/semantic-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
NODE_OPTIONS: "--max-old-space-size=6144"
2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030
persist-credentials: false

0 commit comments

Comments
 (0)