Skip to content

Commit

Permalink
chore(🤖): Remove hardcoded references of node 16 in gh actions (#2300)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcandillon committed Mar 16, 2024
1 parent 7898054 commit 1913aa3
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 15 deletions.
1 change: 0 additions & 1 deletion .github/workflows/android-ubuntu.yml
Expand Up @@ -24,7 +24,6 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'

- name: Set up JDK 11
Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/build-skia.yml
Expand Up @@ -21,17 +21,8 @@ jobs:
uses: seanmiddleditch/gha-setup-ninja@master

- name: Setup Nodejs and npm
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "16"

- name: Setup yarn
run: npm install -g yarn

- name: Setup Nodejs with yarn caching
uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn

- name: Install root node dependencies
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/docs.yml
Expand Up @@ -17,9 +17,8 @@ jobs:
submodules: recursive

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "16"
cache: yarn

- name: Install dependencies
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ios-build.yml
Expand Up @@ -27,7 +27,6 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'

- name: Install root node dependencies
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Expand Up @@ -37,7 +37,6 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'

- name: Install root node dependencies
Expand Down

0 comments on commit 1913aa3

Please sign in to comment.