From 8d23f491800dc1974c8c2d007b052b6d89d73f47 Mon Sep 17 00:00:00 2001 From: ema Date: Thu, 18 Dec 2025 16:32:48 +0800 Subject: [PATCH] Update GitHub Actions dependencies in msbuild workflow --- .github/workflows/msbuild.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index bb616bc..a67d50b 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -33,7 +33,7 @@ jobs: ref: master - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild@v1.1.3 - name: Restore NuGet packages working-directory: ${{env.GITHUB_WORKSPACE}} @@ -46,7 +46,7 @@ jobs: run: msbuild /m /p:BuildInParallel=true /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} # upload msi and zip artifacts so the publish job below can download and then update latest release via Linux - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v6 with: name: quicklook-build-files path: Build/QuickLook-*.* @@ -64,13 +64,13 @@ jobs: if: github.event_name == 'push' steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v6 with: name: quicklook-build-files - name: Update latest release - # see https://github.com/pyTooling/Actions/tree/main/releaser - uses: pyTooling/Actions/releaser@main + # see https://github.com/pyTooling/Actions/tree/r6/releaser + uses: pyTooling/Actions/releaser@r6 with: tag: latest rm: true