Skip to content

Commit 292e94d

Browse files
Update actions/checkout action to v5 (#100)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8ce3339 commit 292e94d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: lint:js
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Setup
2121
uses: ./.github/actions/setup
2222
- name: Lint
@@ -26,7 +26,7 @@ jobs:
2626
name: lint:types
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- name: Setup
3131
uses: ./.github/actions/setup
3232
- name: Lint
@@ -35,7 +35,7 @@ jobs:
3535
test:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: Setup
4040
uses: ./.github/actions/setup
4141
- run: pnpm test
@@ -74,7 +74,7 @@ jobs:
7474
- embroider-optimized
7575

7676
steps:
77-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5
7878
- name: Setup
7979
uses: ./.github/actions/setup
8080
- name: Run Tests

.github/workflows/plan-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
command: ${{ steps.check-release.outputs.command }}
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 2
2727
ref: 'main'
@@ -44,7 +44,7 @@ jobs:
4444
if: ((github.event_name == 'push' || github.event_name == 'workflow_dispatch') && needs.is-this-a-release.outputs.command != 'release') || (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true)
4545

4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
# We need to download lots of history so that
4949
# github-changelog can discover what's changed since the last release
5050
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
attestations: write
2727

2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- name: Setup
3131
uses: ./.github/actions/setup
3232
- name: Publish to NPM

0 commit comments

Comments
 (0)