Skip to content

Commit

Permalink
ci: move to lts for node and actions (#950)
Browse files Browse the repository at this point in the history
* ci: move to lts for node and actions

* fixup
  • Loading branch information
csett86 authored Mar 6, 2024
1 parent 0b05e5b commit d9d5657
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
name: Linux
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
- name: Build it
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm ci
npm run lint
npm run dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: linux-binaries
path: |
Expand All @@ -40,10 +40,10 @@ jobs:
name: macOS
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
- name: Prepare for app signing and notarization
env:
MAC_CERT_PASSWORD: ${{ secrets.mac_cert_password }}
Expand All @@ -61,7 +61,7 @@ jobs:
run: |
npm ci
npm run dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: mac-binaries
path: |
Expand All @@ -72,17 +72,17 @@ jobs:
name: Windows
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
- name: Build it
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm ci
npm run dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: windows-binaries
path: |
Expand Down

0 comments on commit d9d5657

Please sign in to comment.