Skip to content

Commit d6fcad2

Browse files
chore(deps): pin dependencies (#1728)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [JoshuaKGoldberg/all-contributors-auto-action](https://redirect.github.com/JoshuaKGoldberg/all-contributors-auto-action) | action | pinDigest | -> `944abe4` | | [JoshuaKGoldberg/release-it-action](https://redirect.github.com/JoshuaKGoldberg/release-it-action) | action | pinDigest | -> `77373cf` | | [actions-ecosystem/action-remove-labels](https://redirect.github.com/actions-ecosystem/action-remove-labels) | action | pinDigest | -> `2ce5d41` | | [actions/checkout](https://redirect.github.com/actions/checkout) | action | pinDigest | -> `11bd719` | | [actions/setup-node](https://redirect.github.com/actions/setup-node) | action | pinDigest | -> `39370e3` | | [apexskier/github-release-commenter](https://redirect.github.com/apexskier/github-release-commenter) | action | pinDigest | -> `3bd413a` | | [github/accessibility-alt-text-bot](https://redirect.github.com/github/accessibility-alt-text-bot) | action | pinDigest | -> `602a5ef` | --- ### 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 53618c4 commit d6fcad2

10 files changed

+22
-22
lines changed

.github/actions/prepare/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
- uses: pnpm/action-setup@v4
88
with:
99
version: 9
10-
- uses: actions/setup-node@v4
10+
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
1111
with:
1212
cache: pnpm
1313
node-version: "20"

.github/workflows/accessibility-alt-text-bot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
if: ${{ !endsWith(github.actor, '[bot]') }}
44
runs-on: ubuntu-latest
55
steps:
6-
- uses: github/[email protected]
6+
- uses: github/accessibility-alt-text-bot@602a5efcf386c52ef8b9a11ead9bfa6ef8d56ba5 # v1.4.0
77

88
name: Accessibility Alt Text Bot
99

.github/workflows/ci.yml

+10-10
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@v4
6+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
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@v4
14+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1515
- uses: ./.github/actions/prepare
1616
- run: pnpm build
1717
- run: node ./lib/index.js
1818
lint:
1919
name: Lint
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
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@v4
30+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
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@v4
37+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
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@v4
44+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
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@v4
51+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
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@v4
58+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
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@v4
65+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6666
- uses: ./.github/actions/prepare
6767
- run: pnpm run test --coverage
6868
- uses: codecov/codecov-action@v3
@@ -72,7 +72,7 @@ jobs:
7272
name: Type Check
7373
runs-on: ubuntu-latest
7474
steps:
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
7676
- uses: ./.github/actions/prepare
7777
- run: pnpm tsc
7878

.github/workflows/contributors.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ jobs:
22
contributors:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@v4
5+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
66
with:
77
fetch-depth: 0
88
- uses: ./.github/actions/prepare
99
- env:
1010
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
11-
uses: JoshuaKGoldberg/[email protected]
11+
uses: JoshuaKGoldberg/all-contributors-auto-action@944abe4387e751b5bbb38616cb25cf4a4ca998f2 # v0.5.0
1212

1313
name: Contributors
1414

.github/workflows/post-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ jobs:
22
post_release:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@v4
5+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
66
with:
77
fetch-depth: 0
88
- run: echo "npm_version=$(npm pkg get version | tr -d '"')" >> "$GITHUB_ENV"
9-
- uses: apexskier/github-release-commenter@v1
9+
- uses: apexskier/github-release-commenter@3bd413ad5e1d603bfe2282f9f06f2bdcec079327 # v1
1010
with:
1111
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1212
comment-template: |

.github/workflows/pr-review-requested.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
pr_review_requested:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions-ecosystem/action-remove-labels@v1
5+
- uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1
66
with:
77
labels: "status: waiting for author"
88
- if: failure()

.github/workflows/release.yml

+2-2
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@v4
8+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
99
with:
1010
fetch-depth: 0
1111
ref: main
@@ -14,7 +14,7 @@ jobs:
1414
- env:
1515
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
1616
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
17-
uses: JoshuaKGoldberg/[email protected]
17+
uses: JoshuaKGoldberg/release-it-action@77373cfc2535e21149518381cb09e1c04c6068fe # v0.2.2
1818

1919
name: Release
2020

.github/workflows/test-create.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
create:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@v4
5+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
66
- uses: ./.github/actions/prepare
77
- run: pnpm run build
88
- run: pnpm run test:create

.github/workflows/test-initialize.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
initialize:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@v4
5+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
66
- uses: ./.github/actions/prepare
77
- run: pnpm run build
88
- run: pnpm run test:initialize

.github/workflows/test-migrate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
migrate:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@v4
5+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
66
- uses: ./.github/actions/prepare
77
- run: pnpm run build
88
- run: pnpm run test:migrate

0 commit comments

Comments
 (0)