Skip to content

Commit

Permalink
Update deprecated GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cipi1965 committed Jun 11, 2024
1 parent 687f2d1 commit b89d97f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
uses: actions/checkout@v1

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version: 18
node-version: 20

- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -50,23 +50,23 @@ jobs:
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}

- name: Upload macOS artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ runner.os == 'macOS' }}
with:
name: macos-build
path: |
out/make/**/*.zip
out/make/**/*.dmg
- name: Upload Windows artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ runner.os == 'Windows' }}
with:
name: windows-build
path: |
out/make/**/*.nupkg
out/make/**/*.exe
- name: Upload Linux artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ runner.os == 'Linux' }}
with:
name: linux-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
uses: actions/checkout@v1

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version: 18
node-version: 20

- uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit b89d97f

Please sign in to comment.