Skip to content

Commit c21a3d4

Browse files
chore: bump actions/checkout from 4 to 5
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]>
1 parent f22e8bc commit c21a3d4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

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

2121
steps:
2222
- name: Checkout Code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Setup Node.js
2626
uses: actions/setup-node@v4
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout Code
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343

4444
- name: Setup Node.js
4545
uses: actions/setup-node@v4

.github/workflows/release-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: github.event_name == 'workflow_dispatch'
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
fetch-depth: 0
3636

@@ -144,7 +144,7 @@ jobs:
144144
outputs:
145145
release_branch: ${{ steps.extract-branch-name.outputs.branch_name }}
146146
steps:
147-
- uses: actions/checkout@v4
147+
- uses: actions/checkout@v5
148148
with:
149149
fetch-depth: 0
150150

@@ -201,7 +201,7 @@ jobs:
201201
if: github.event_name == 'pull_request' && github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')
202202
runs-on: ubuntu-latest
203203
steps:
204-
- uses: actions/checkout@v4
204+
- uses: actions/checkout@v5
205205
with:
206206
fetch-depth: 0
207207

0 commit comments

Comments
 (0)