Skip to content

Commit e9bb007

Browse files
build(deps): bump actions/checkout from 4 to 5 (#421)
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 0e731dc commit e9bb007

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
build:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- uses: actions/setup-node@v4
2424
with:
2525
node-version: 20.x
@@ -45,7 +45,7 @@ jobs:
4545
matrix:
4646
target: [built, committed]
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- if: matrix.target == 'built' || github.event_name == 'pull_request'
5050
uses: actions/download-artifact@v5
5151
with:
@@ -73,7 +73,7 @@ jobs:
7373
needs: [test]
7474
runs-on: ubuntu-latest
7575
steps:
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v5
7777
- uses: actions/download-artifact@v5
7878
with:
7979
name: dist

.github/workflows/on-repository-dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
PAYLOAD_CONTEXT: ${{ toJson(github.event.client_payload) }}
1212
run: echo "$PAYLOAD_CONTEXT"
1313

14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
if: github.event.client_payload.ref != ''
1616
with:
1717
ref: ${{ github.event.client_payload.ref }}

.github/workflows/update-major-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
tag:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
token: ${{ secrets.ACTIONS_BOT_TOKEN }}
2323
fetch-depth: 0

0 commit comments

Comments
 (0)