Skip to content

Commit f3f4605

Browse files
chore(deps): update actions/checkout action to v5 (#2295)
This PR contains the following updates: | Package | Type | Update | Change | Pending | |---|---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | major | `v4` -> `v5` | `v6` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v5`](https://redirect.github.com/actions/checkout/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/checkout/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/JoshuaKGoldberg/create-typescript-app). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 92b8acf commit f3f4605

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,66 +3,66 @@ jobs:
33
name: Are The Types Wrong?
44
runs-on: ubuntu-latest
55
steps:
6-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
6+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
77
- uses: ./.github/actions/prepare
88
- run: pnpm build
99
- run: npx --yes @arethetypeswrong/cli --pack . --ignore-rules cjs-resolves-to-esm
1010
build:
1111
name: Build
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
14+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
1515
- uses: ./.github/actions/prepare
1616
- run: pnpm build
1717
- run: node lib/index.js --version
1818
lint:
1919
name: Lint
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
22+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
2323
- uses: ./.github/actions/prepare
2424
- run: pnpm build
2525
- run: pnpm lint
2626
lint_knip:
2727
name: Lint Knip
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
30+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
3131
- uses: ./.github/actions/prepare
3232
- run: pnpm lint:knip
3333
lint_markdown:
3434
name: Lint Markdown
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
37+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
3838
- uses: ./.github/actions/prepare
3939
- run: pnpm lint:md
4040
lint_packages:
4141
name: Lint Packages
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
44+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
4545
- uses: ./.github/actions/prepare
4646
- run: pnpm lint:packages
4747
lint_spelling:
4848
name: Lint Spelling
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
51+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
5252
- uses: ./.github/actions/prepare
5353
- run: pnpm lint:spelling
5454
prettier:
5555
name: Prettier
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
58+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
5959
- uses: ./.github/actions/prepare
6060
- run: pnpm format --list-different
6161
test:
6262
name: Test
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
65+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
6666
- uses: ./.github/actions/prepare
6767
- run: pnpm run test --coverage
6868
- env:
@@ -73,7 +73,7 @@ jobs:
7373
name: Type Check
7474
runs-on: ubuntu-latest
7575
steps:
76-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
76+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
7777
- uses: ./.github/actions/prepare
7878
- run: pnpm tsc
7979

.github/workflows/contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
contributors:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
5+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
66
with:
77
fetch-depth: 0
88
- uses: ./.github/actions/prepare

.github/workflows/post-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
post_release:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
5+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
66
with:
77
fetch-depth: 0
88
- run: echo "npm_version=$(npm pkg get version | tr -d '"')" >> "$GITHUB_ENV"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
release:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
8+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
99
with:
1010
fetch-depth: 0
1111
ref: main

0 commit comments

Comments
 (0)