Skip to content

Commit

Permalink
Merge pull request #70 from catdad/fix-actions-warnings
Browse files Browse the repository at this point in the history
updating actions to resolve warnings
  • Loading branch information
catdad authored Feb 10, 2024
2 parents 24c2d3d + 9ac19cc commit ae1f42d
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 @@ -12,39 +12,39 @@ jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
- run: npm install
- run: npm test
- run: npm run package
- run: npm run test:unpacked
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-artifacts
path: dist/*.exe
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
- run: npm install
- run: npm test
- run: npm run package
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macos-artifacts
path: dist/*.dmg
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
- run: sudo apt-get install xvfb
Expand All @@ -53,7 +53,7 @@ jobs:
- run: npm run package
- run: xvfb-run --auto-servernum npm run test:unpacked
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-artifacts
path: dist/*.AppImage
Expand All @@ -62,7 +62,7 @@ jobs:
needs: [ windows, macos, linux ]
steps:
- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ./
- name: Flatten artifacts
Expand Down

0 comments on commit ae1f42d

Please sign in to comment.