Skip to content

Commit

Permalink
chore: update actions/checkout to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
legendecas committed Jan 13, 2022
1 parent d315b0a commit 5d4ff4c
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -53,10 +53,12 @@ jobs:
env:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Permission Setup
run: sudo chmod -R 777 /github /__w
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: restore lerna
uses: actions/cache@v2
Expand Down Expand Up @@ -91,7 +93,7 @@ jobs:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -132,10 +134,12 @@ jobs:
env:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Permission Setup
run: sudo chmod -R 777 /github /__w
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: restore lerna
uses: actions/cache@v2
Expand Down

0 comments on commit 5d4ff4c

Please sign in to comment.