|
60 | 60 | platform: [x64] # Change platform if you want to build only a specific platform |
61 | 61 |
|
62 | 62 | steps: |
63 | | - - uses: actions/checkout@v5 |
| 63 | + - uses: actions/checkout@v6 |
64 | 64 | with: |
65 | 65 | fetch-depth: 0 |
66 | 66 |
|
|
70 | 70 | 10.x.x |
71 | 71 |
|
72 | 72 | - name: Add msbuild to PATH |
73 | | - uses: microsoft/setup-msbuild@v2 |
| 73 | + uses: microsoft/setup-msbuild@v3 |
74 | 74 | with: |
75 | 75 | vs-prerelease: true |
76 | 76 |
|
@@ -134,7 +134,7 @@ jobs: |
134 | 134 | dotnet publish ${{ env.DEVWINUI_GALLERY_PROJECT_PATH }} -c Release -r win-$($runtimeIdentifier.ToLower()) /p:GITHUB_ACTIONS=true -p:Platform=${{ matrix.platform }} --self-contained ${{ env.PUBLISH_SELF_CONTAINED }} -p:PublishSingleFile=${{ env.PUBLISH_SINGLE_FILE }} -p:PublishReadyToRun=${{ env.PUBLISH_READY_TO_RUN }} -p:PublishTrimmed=${{ env.PUBLISH_TRIMMED }} -p:TrimMode=${{ env.PUBLISH_TRIM_MODE }} -p:PublishAot=${{ env.PUBLISH_AOT }} --output ${{ env.PUBLISH_OUTPUT_FOLDER }}/${{ matrix.platform }} |
135 | 135 |
|
136 | 136 | # Zipping folder and all files |
137 | | - - uses: vimtor/action-zip@v1.2 |
| 137 | + - uses: vimtor/action-zip@v1.3 |
138 | 138 | with: |
139 | 139 | files: ${{ env.PUBLISH_OUTPUT_FOLDER }}/${{ matrix.platform }} |
140 | 140 | recursive: true |
@@ -163,7 +163,7 @@ jobs: |
163 | 163 | echo "VSIX_IS_PREVIEW=${{ env.VSIX_IS_PREVIEW }}" |
164 | 164 |
|
165 | 165 | # Uploading all zip files to access them in the 'release' job |
166 | | - - uses: actions/upload-artifact@v4 |
| 166 | + - uses: actions/upload-artifact@v7 |
167 | 167 | with: |
168 | 168 | name: artifacts-${{ matrix.platform }} |
169 | 169 | path: ${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-${{ matrix.platform }}.zip |
@@ -194,12 +194,12 @@ jobs: |
194 | 194 | APP_VERSION: ${{ needs.build.outputs.APP_VERSION }} |
195 | 195 | IS_PRE_RELEASE: ${{ needs.build.outputs.IS_PRE_RELEASE }} |
196 | 196 | steps: |
197 | | - - uses: actions/checkout@v5 |
| 197 | + - uses: actions/checkout@v6 |
198 | 198 | with: |
199 | 199 | fetch-depth: 0 |
200 | 200 |
|
201 | 201 | # Downloading all zip files into the GitHub root directory (uploaded in 'build' job) |
202 | | - - uses: actions/download-artifact@v4 |
| 202 | + - uses: actions/download-artifact@v8 |
203 | 203 | with: |
204 | 204 | merge-multiple: true |
205 | 205 |
|
|
0 commit comments