Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: actions updated #641

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/electronbuilder-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
uses: actions/checkout@v1

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 16

- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
- name: Electron Builder Action(Using Node 20)
uses: vingeraycn/action-electron-builder@v1.0.1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
uses: actions/checkout@v3

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 16

- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
- name: Electron Builder Action(Using Node 20)
uses: vingeraycn/action-electron-builder@v1.0.1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 16

Expand Down Expand Up @@ -49,12 +49,12 @@ jobs:
# uses: actions/checkout@v1

# - name: Install Node.js, NPM and Yarn
# uses: actions/setup-node@v1
# uses: actions/setup-node@v4
# with:
# node-version: 16

# - name: Build/release Electron app
# uses: samuelmeuli/action-electron-builder@v1
# - name: Electron Builder Action(Using Node 20)
# uses: vingeraycn/action-electron-builder@v1.0.1
# with:
# # GitHub token, automatically provided to the action
# # (No need to define this secret in the repo settings)
Expand Down
Loading