Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/checkout action to v4 #76

Merged
merged 1 commit into from
Sep 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4

Check failure on line 12 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 6 spaces but found 5 spaces
- uses: pnpm/action-setup@v2

Check failure on line 13 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 6 spaces but found 5 spaces
- uses: actions/setup-node@v3

Check failure on line 14 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 6 spaces but found 5 spaces
with:

Check failure on line 15 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 8 spaces but found 7 spaces
node-version: 18

Check failure on line 16 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 10 spaces but found 9 spaces
cache: pnpm

Check failure on line 17 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 10 spaces but found 9 spaces

- name: Install

Check failure on line 19 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 6 spaces but found 5 spaces
run: pnpm i

Check failure on line 20 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 8 spaces but found 7 spaces

- name: Lint

Check failure on line 22 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 6 spaces but found 5 spaces
run: pnpm lint

Check failure on line 23 in .github/workflows/push.yml

View workflow job for this annotation

GitHub Actions / lint

Expected indentation of 8 spaces but found 7 spaces

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
Expand Down