77 required : true
88jobs :
99 build :
10- runs-on : windows-2019
10+ runs-on : windows-latest
1111 env :
1212 ACTIONS_ALLOW_UNSECURE_COMMANDS : true
1313 steps :
@@ -34,17 +34,17 @@ jobs:
3434 uses : actions/upload-artifact@v4
3535 with :
3636 name : Compiled project
37- path : D:\a\qrcoder\qrcoder
37+ path : ${{ github.workspace }}
3838
3939 test :
4040 needs : build
41- runs-on : windows-2019
41+ runs-on : windows-latest
4242 steps :
4343 - name : Download artifacts
4444 uses : actions/download-artifact@v4
4545 with :
4646 name : Compiled project
47- path : D:\a\qrcoder\qrcoder
47+ path : ${{ github.workspace }}
4848
4949 - name : Install additional .NET SDKs
5050 uses : actions/setup-dotnet@v4
@@ -139,15 +139,15 @@ jobs:
139139
140140 pack-push-release :
141141 needs : test
142- runs-on : windows-2019
142+ runs-on : windows-latest
143143 env :
144144 GH_PKG_SEC : ${{ secrets.GITHUB_TOKEN }}
145145 steps :
146146 - name : Download artifacts
147147 uses : actions/download-artifact@v4
148148 with :
149149 name : Compiled project
150- path : D:\a\qrcoder\qrcoder
150+ path : ${{ github.workspace }}
151151
152152 - name : Install additional .NET SDKs
153153 uses : actions/setup-dotnet@v4
@@ -187,7 +187,7 @@ jobs:
187187 clean :
188188 needs : [build, test, pack-push-release]
189189 if : always()
190- runs-on : windows-2019
190+ runs-on : windows-latest
191191 steps :
192192 - name : Delete artifacts
193193 uses : GeekyEggo/delete-artifact@v5
0 commit comments