Skip to content

Commit

Permalink
chore: update node version and apt on linux builds
Browse files Browse the repository at this point in the history
  • Loading branch information
evereq committed Oct 1, 2022
1 parent 15f74f0 commit a24e112
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/desktop-app.yml
Expand Up @@ -20,15 +20,15 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Change permissions
run: 'sudo chown -R $(whoami) ./*'

- name: Install system dependencies
run: 'sudo apt install -y curl gnupg git libappindicator3-1 ca-certificates binutils icnsutils graphicsmagick'
run: 'sudo apt-get update && sudo apt install -y curl gnupg git libappindicator3-1 ca-certificates binutils icnsutils graphicsmagick'

- name: Install latest version of NPM
run: 'sudo npm install -g npm'
Expand Down Expand Up @@ -69,9 +69,9 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Install latest version of NPM
run: 'sudo npm install -g npm'
Expand Down Expand Up @@ -112,9 +112,9 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Install latest version of NPM
run: 'npm install -g npm'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/desktop-timer-app.yml
Expand Up @@ -20,15 +20,15 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Change permissions
run: 'sudo chown -R $(whoami) ./*'

- name: Install system dependencies
run: 'sudo apt install -y curl gnupg git libappindicator3-1 ca-certificates binutils icnsutils graphicsmagick'
run: 'sudo apt-get update && sudo apt install -y curl gnupg git libappindicator3-1 ca-certificates binutils icnsutils graphicsmagick'

- name: Install latest version of NPM
run: 'sudo npm install -g npm'
Expand Down Expand Up @@ -69,9 +69,9 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Install latest version of NPM
run: 'sudo npm install -g npm'
Expand Down Expand Up @@ -112,9 +112,9 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Install latest version of NPM
run: 'npm install -g npm'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/server.yml
Expand Up @@ -20,15 +20,15 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Change permissions
run: 'sudo chown -R $(whoami) ./*'

- name: Install system dependencies
run: 'sudo apt install -y curl gnupg git libappindicator3-1 ca-certificates binutils icnsutils graphicsmagick'
run: 'sudo apt-get update && sudo apt install -y curl gnupg git libappindicator3-1 ca-certificates binutils icnsutils graphicsmagick'

- name: Install latest version of NPM
run: 'sudo npm install -g npm'
Expand Down Expand Up @@ -69,9 +69,9 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Install latest version of NPM
run: 'sudo npm install -g npm'
Expand Down Expand Up @@ -112,9 +112,9 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.14.0
node-version: 16.17.1

- name: Install latest version of NPM
run: 'npm install -g npm'
Expand Down

0 comments on commit a24e112

Please sign in to comment.