Skip to content

Commit 56e056c

Browse files
authored
Merge pull request #113 from oslabs-beta/main
Attempting github workflow fix
2 parents 98f8500 + c6780a0 commit 56e056c

File tree

4 files changed

+1099
-141
lines changed

4 files changed

+1099
-141
lines changed

Diff for: .github/workflows/electron.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Electron Release
22

3-
# This workflow is responsible for automatically building and releasing the electron app on pushes to the master branch. Build specific configurations are set in electron-builder.yml.
3+
# This workflow is responsible for automatically building and releasing the electron app on pushes to the master branch. Build specific configurations are set in electron-builder.yml.
44

55
# When ready to release a new version:
66
# 1. create a draft release and set tag to the new version
@@ -34,15 +34,15 @@ jobs:
3434

3535
steps:
3636
- name: Check out Git repository
37-
uses: actions/checkout@v1
37+
uses: actions/checkout@v3
3838

3939
- name: Install Node.js, NPM and Yarn
40-
uses: actions/setup-node@v1
40+
uses: actions/setup-node@v3
4141
with:
42-
node-version: 14
42+
node-version: '18.x'
4343

4444
- name: Build/release Electron app
45-
uses: samuelmeuli/action-electron-builder@v1
45+
uses: peterzepf/action-electron-builder@1.6.1
4646
with:
4747
# GitHub token, automatically provided to the action
4848
# (No need to define this secret in the repo settings)

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- name: Use Node.js
1919
uses: actions/setup-node@v1
2020
with:
21-
node-version: '14.x'
21+
node-version: '18.x'
2222
- run: npm ci
2323
- run: npm test

0 commit comments

Comments
 (0)