From 92002dd3709edeeec1f6682cfdb781fc2d442362 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2026 14:22:48 +0000 Subject: [PATCH] chore(actions-deps): bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-dotnet](https://github.com/actions/setup-dotnet), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [microsoft/microsoft-store-apppublisher](https://github.com/microsoft/microsoft-store-apppublisher). Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `actions/setup-dotnet` from 4 to 6 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `microsoft/microsoft-store-apppublisher` from 1.1 to 1.4 - [Release notes](https://github.com/microsoft/microsoft-store-apppublisher/releases) - [Commits](https://github.com/microsoft/microsoft-store-apppublisher/compare/v1.1...v1.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-dotnet dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: microsoft/microsoft-store-apppublisher dependency-version: '1.4' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/pre-release-check.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pre-release-check.yml b/.github/workflows/pre-release-check.yml index 61fba27..997cf50 100644 --- a/.github/workflows/pre-release-check.yml +++ b/.github/workflows/pre-release-check.yml @@ -22,10 +22,10 @@ jobs: steps: - name: Check out source - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up .NET 8 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v6 with: dotnet-version: 8.0.x @@ -90,7 +90,7 @@ jobs: -Encoding ascii - name: Upload checked Store package - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: WinLive-store-package-check-${{ github.run_number }} path: artifacts/store-check/* diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b8d7106..3ed0bd7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Check out source - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Validate Store package version id: version @@ -67,7 +67,7 @@ jobs: "PACKAGE_VERSION=$packageVersion" >> $env:GITHUB_ENV - name: Set up .NET 8 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v6 with: dotnet-version: 8.0.x @@ -135,7 +135,7 @@ jobs: "asset_path=$outputPath" >> $env:GITHUB_OUTPUT - name: Upload Store package artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: WinLive-${{ steps.version.outputs.version }}-store-windows-x64 path: artifacts/store-release/* @@ -145,7 +145,7 @@ jobs: - name: Configure Microsoft Store CLI if: ${{ inputs.publish }} - uses: microsoft/microsoft-store-apppublisher@v1.1 + uses: microsoft/microsoft-store-apppublisher@v1.4 - name: Submit package to Microsoft Store if: ${{ inputs.publish }}