3535 dotnet-version : ' 9.0.x'
3636
3737 - name : Cache NuGet packages
38- uses : actions/cache@v4
38+ uses : actions/cache@v5
3939 with :
4040 path : ~/.nuget/packages
4141 key : nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }}
@@ -61,14 +61,14 @@ jobs:
6161 run : dotnet publish src/daemon/NKS.WebDevConsole.Cli -c Release -r win-x64 --self-contained -o publish/cli
6262
6363 - name : Upload Daemon artifact
64- uses : actions/upload-artifact@v4
64+ uses : actions/upload-artifact@v5
6565 with :
6666 name : daemon-win-x64
6767 path : publish/daemon/
6868 retention-days : 14
6969
7070 - name : Upload CLI artifact
71- uses : actions/upload-artifact@v4
71+ uses : actions/upload-artifact@v5
7272 with :
7373 name : cli-win-x64
7474 path : publish/cli/
@@ -83,13 +83,13 @@ jobs:
8383 - name : Checkout
8484 uses : actions/checkout@v6
8585
86- - name : Setup Node.js 20
86+ - name : Setup Node.js 24
8787 uses : actions/setup-node@v6
8888 with :
89- node-version : ' 20 '
89+ node-version : ' 24 '
9090
9191 - name : Cache npm dependencies
92- uses : actions/cache@v4
92+ uses : actions/cache@v5
9393 with :
9494 path : src/frontend/node_modules
9595 key : npm-${{ runner.os }}-${{ hashFiles('src/frontend/package-lock.json') }}
@@ -109,7 +109,7 @@ jobs:
109109 run : npm run build
110110
111111 - name : Upload frontend artifact
112- uses : actions/upload-artifact@v4
112+ uses : actions/upload-artifact@v5
113113 with :
114114 name : frontend-out
115115 path : src/frontend/dist-electron/
@@ -128,13 +128,13 @@ jobs:
128128 - name : Checkout
129129 uses : actions/checkout@v6
130130
131- - name : Setup Node.js 20
131+ - name : Setup Node.js 24
132132 uses : actions/setup-node@v6
133133 with :
134- node-version : ' 20 '
134+ node-version : ' 24 '
135135
136136 - name : Download daemon artifact
137- uses : actions/download-artifact@v4
137+ uses : actions/download-artifact@v5
138138 with :
139139 name : daemon-win-x64
140140 path : src/frontend/resources/daemon
@@ -186,7 +186,7 @@ jobs:
186186 run : npm run smoke:packaged:win
187187
188188 - name : Upload installer artifact
189- uses : actions/upload-artifact@v4
189+ uses : actions/upload-artifact@v5
190190 with :
191191 name : installer-win-x64
192192 path : src/frontend/release/
0 commit comments