Skip to content

Commit baa5e4f

Browse files
committed
Use volta action v4 for all targets
- Update to v4 for all existing targets - Switch to using the Volta action for Windows targets
1 parent ff45eb8 commit baa5e4f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Diff for: .github/workflows/ci.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
steps:
2727
- name: Checkout Code
2828
uses: actions/checkout@v2
29-
- uses: volta-cli/action@v1
29+
- name: Install Node
30+
uses: volta-cli/action@v4
3031
# https://github.com/expo/expo-github-action/issues/20#issuecomment-541676895
3132
- name: Raise Watched File Limit
3233
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
@@ -48,9 +49,7 @@ jobs:
4849
- name: Checkout Code
4950
uses: actions/checkout@v2
5051
- name: Install Node
51-
uses: actions/setup-node@v1
52-
with:
53-
node-version: '^14'
52+
uses: volta-cli/action@v4
5453
- name: Install Dependencies
5554
run: yarn install --frozen-lockfile
5655
- name: Prepare CI Environment
@@ -67,7 +66,8 @@ jobs:
6766
steps:
6867
- name: Checkout Code
6968
uses: actions/checkout@v2
70-
- uses: volta-cli/action@v1
69+
- name: Install Node
70+
uses: volta-cli/action@v4
7171
- name: Raise Watched File Limit
7272
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
7373
- name: Install Dependencies
@@ -94,7 +94,8 @@ jobs:
9494
steps:
9595
- name: Checkout Code
9696
uses: actions/checkout@v2
97-
- uses: volta-cli/action@v1
97+
- name: Install Node
98+
uses: volta-cli/action@v4
9899
- name: Raise Watched File Limit
99100
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
100101
- name: Install Dependencies

0 commit comments

Comments
 (0)