@@ -16,28 +16,28 @@ jobs:
1616
1717 steps :
1818 - name : Checkout Repo
19- uses : actions/checkout@v4
19+ uses : actions/checkout@v6
2020
2121 - name : Set Up Node.js
22- uses : actions/setup-node@v4
22+ uses : actions/setup-node@v6
2323 with :
24- node-version : " latest"
25-
24+ node-version : ' latest'
25+
2626 - name : Enable Corepack
2727 run : corepack enable
28-
28+
2929 - name : Cache Linux pnpm
3030 if : matrix.os == 'ubuntu-latest'
31- uses : actions/cache@v4
31+ uses : actions/cache@v5
3232 with :
3333 path : ~/.local/share/pnpm/store
3434 key : pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
3535 restore-keys : |
3636 pnpm-${{ runner.os }}-
37-
37+
3838 - name : Cache Windows pnpm
3939 if : matrix.os == 'windows-latest'
40- uses : actions/cache@v4
40+ uses : actions/cache@v5
4141 with :
4242 path : D:\.pnpm-store
4343 key : pnpm-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -49,17 +49,17 @@ jobs:
4949
5050 - name : Build Electron App
5151 run : pnpm run build:latest
52-
52+
5353 - name : Upload Linux Artifacts
5454 if : matrix.os == 'ubuntu-latest'
55- uses : actions/upload-artifact@v4
55+ uses : actions/upload-artifact@v7
5656 with :
5757 name : linux-release-assets-${{ github.sha }}
5858 path : release/*/jm-desktop-Linux-*.zip
59-
59+
6060 - name : Upload Windows Artifacts
6161 if : matrix.os == 'windows-latest'
62- uses : actions/upload-artifact@v4
62+ uses : actions/upload-artifact@v7
6363 with :
6464 name : windows-release-assets-${{ github.sha }}
65- path : release/*/jm-desktop-Windows-*.zip
65+ path : release/*/jm-desktop-Windows-*.zip
0 commit comments