Skip to content

Commit

Permalink
Merge pull request #605 from robo-w/upgrade/node-js-20-in-github-actions
Browse files Browse the repository at this point in the history
Upgrade dependency for Application GitHub Actions
  • Loading branch information
josephdadams authored Nov 6, 2023
2 parents 3b9a53a + 3f4b3fb commit 38439ee
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
name: Build CLI on Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20
- name: Install dependencies
run: npm i -f
- name: Create env file
Expand All @@ -38,11 +38,11 @@ jobs:
name: Build Docker image on Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20
- name: Install dependencies and build
run: npm i -f; npm run build
- name: Set up QEMU
Expand Down Expand Up @@ -99,13 +99,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, ubuntu-latest, macos-latest]
os: [windows-2022, ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20
- name: Create env file
run: |
touch .env
Expand Down

0 comments on commit 38439ee

Please sign in to comment.