@@ -13,12 +13,12 @@ jobs:
1313 matrix :
1414 os : [windows-latest, macos-latest, ubuntu-latest]
1515 steps :
16- - uses : actions/checkout@v2
17- - uses : actions/setup-node@v1
16+ - uses : actions/checkout@v3
17+ - uses : actions/setup-node@v3
1818 with :
1919 node-version : " 16"
2020 - name : Cache node modules
21- uses : actions/cache@v2
21+ uses : actions/cache@v3
2222 env :
2323 cache-name : cache-node-modules
2424 with :
3434 run : npm install
3535 - name : Extract version
3636 id : ver
37- uses : Saionaro/extract-package-version@v1.0.6
37+ uses : Saionaro/extract-package-version@v1.1.1
3838 - name : Build Webpack
3939 run : npm run prod
4040 - name : Build Electron for Windows
@@ -57,14 +57,14 @@ jobs:
5757 run : npm run make -- --linux
5858 - name : Upload Artifact
5959 if : matrix.os == 'windows-latest'
60- uses : actions/upload-artifact@v2
60+ uses : actions/upload-artifact@v3
6161 with :
6262 name : art
6363 retention-days : 1
6464 path : package/Epherome-${{ steps.ver.outputs.version }}.exe
6565 - name : Upload Artifact
6666 if : matrix.os == 'macos-latest'
67- uses : actions/upload-artifact@v2
67+ uses : actions/upload-artifact@v3
6868 with :
6969 name : art
7070 retention-days : 1
7373 package/Epherome-${{ steps.ver.outputs.version }}-x64.dmg
7474 - name : Upload Artifact
7575 if : matrix.os == 'ubuntu-latest'
76- uses : actions/upload-artifact@v2
76+ uses : actions/upload-artifact@v3
7777 with :
7878 name : art
7979 retention-days : 1
@@ -88,18 +88,18 @@ jobs:
8888 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
8989 runs-on : ubuntu-latest
9090 steps :
91- - uses : actions/checkout@v2
92- - uses : actions/setup-node@v1
91+ - uses : actions/checkout@v3
92+ - uses : actions/setup-node@v3
9393 with :
9494 node-version : " 16"
9595 - name : Get Artifacts
96- uses : actions/download-artifact@v2
96+ uses : actions/download-artifact@v3
9797 with :
9898 name : art
9999 path : package
100100 - name : Extract version
101101 id : ver
102- uses : Saionaro/extract-package-version@v1.0.6
102+ uses : Saionaro/extract-package-version@v1.1.1
103103 - name : Install Dependencies
104104 run : npm install
105105 - name : Run Post Release Script
0 commit comments