Skip to content

Commit fc51b4b

Browse files
committed
Update publish-release.yml
1 parent 2359c8a commit fc51b4b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
platform: [x64] # Change platform if you want to build only a specific platform
6161

6262
steps:
63-
- uses: actions/checkout@v5
63+
- uses: actions/checkout@v6
6464
with:
6565
fetch-depth: 0
6666

@@ -70,7 +70,7 @@ jobs:
7070
10.x.x
7171
7272
- name: Add msbuild to PATH
73-
uses: microsoft/setup-msbuild@v2
73+
uses: microsoft/setup-msbuild@v3
7474
with:
7575
vs-prerelease: true
7676

@@ -134,7 +134,7 @@ jobs:
134134
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 }}
135135
136136
# Zipping folder and all files
137-
- uses: vimtor/action-zip@v1.2
137+
- uses: vimtor/action-zip@v1.3
138138
with:
139139
files: ${{ env.PUBLISH_OUTPUT_FOLDER }}/${{ matrix.platform }}
140140
recursive: true
@@ -163,7 +163,7 @@ jobs:
163163
echo "VSIX_IS_PREVIEW=${{ env.VSIX_IS_PREVIEW }}"
164164
165165
# Uploading all zip files to access them in the 'release' job
166-
- uses: actions/upload-artifact@v4
166+
- uses: actions/upload-artifact@v7
167167
with:
168168
name: artifacts-${{ matrix.platform }}
169169
path: ${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-${{ matrix.platform }}.zip
@@ -194,12 +194,12 @@ jobs:
194194
APP_VERSION: ${{ needs.build.outputs.APP_VERSION }}
195195
IS_PRE_RELEASE: ${{ needs.build.outputs.IS_PRE_RELEASE }}
196196
steps:
197-
- uses: actions/checkout@v5
197+
- uses: actions/checkout@v6
198198
with:
199199
fetch-depth: 0
200200

201201
# 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
203203
with:
204204
merge-multiple: true
205205

0 commit comments

Comments
 (0)