Skip to content

Commit e46e51c

Browse files
committed
Fix
1 parent b9460a8 commit e46e51c

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/actions/ci-setup/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ inputs:
1010
runs:
1111
using: composite
1212
steps:
13-
- name: Check out repo
14-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
15-
1613
- name: Set up pnpm
1714
uses: pnpm/action-setup@91ab88e2619ed1f46221f0ba42d1492c02baf788 # v6.0.6
1815

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
# Save dprint plugins cache to node_nodules in CI for simpler caching
1818
DPRINT_CACHE_DIR: ${{ github.workspace }}/node_modules/.dprint-cache
1919
steps:
20+
- name: Check out repo
21+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
22+
2023
- uses: ./.github/actions/ci-setup
2124

2225
# Deno is needed for tests only

.github/workflows/publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
issues: write # to post issue comments (changesets/action)
2222
pull-requests: write # to create pull request (changesets/action)
2323
steps:
24+
- name: Check out repo
25+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
26+
2427
- uses: ./.github/actions/ci-setup
2528

2629
- name: Create or update release pull request
@@ -38,6 +41,9 @@ jobs:
3841
contents: write # to create release (changesets/action)
3942
id-token: write # to use OpenID Connect token for trusted publishing (changesets/action)
4043
steps:
44+
- name: Check out repo
45+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
46+
4147
- uses: ./.github/actions/ci-setup
4248

4349
- name: Build

0 commit comments

Comments
 (0)