From a810a554f54e3910bfdb6e606bc08bc78436d70e Mon Sep 17 00:00:00 2001 From: Darshit Mistry <159099382+drshtmstry@users.noreply.github.com> Date: Mon, 3 Aug 2026 09:14:42 +0530 Subject: [PATCH] ci: update GitHub Actions workflow to use checkout@v7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 📌 Summary Updates the WinGet publication workflow (`komac`) to use the latest version of the `actions/checkout` action and switches the runner to `ubuntu-slim`. ## 🔄 Changes * **Action Update:** Upgraded `actions/checkout` to `@v7`. * **Runner Update:** Changed `runs-on` from `ubuntu-latest` to `ubuntu-slim` for faster, lightweight job execution. ## ✅ Verification - [x] Verified workflow syntax and YAML formatting. --- .github/workflows/publish-to-winget.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-to-winget.yml b/.github/workflows/publish-to-winget.yml index e2b2184..b27f86d 100644 --- a/.github/workflows/publish-to-winget.yml +++ b/.github/workflows/publish-to-winget.yml @@ -7,10 +7,10 @@ on: jobs: komac: name: Publish winget package - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Extract version without 'v' id: format_version