From 75a74751ea2b408fe56c713c9f28d678d7571923 Mon Sep 17 00:00:00 2001 From: Frog Date: Sun, 21 Jun 2026 23:18:21 -0700 Subject: [PATCH] Update Github Runners - Updates the Github CI runner to use the latest versions of the depended upon actions. --- .github/workflows/ci-builds.yml | 6 +++--- .github/workflows/dev-ci-builds.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-builds.yml b/.github/workflows/ci-builds.yml index f320668..18c12fa 100644 --- a/.github/workflows/ci-builds.yml +++ b/.github/workflows/ci-builds.yml @@ -12,10 +12,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: '8.0.x' @@ -41,7 +41,7 @@ jobs: shell: pwsh - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: CreamInstaller-CI-Release-${{ env.shortSha }} path: ./publish/CreamInstaller-CI-${{ env.shortSha }}.exe diff --git a/.github/workflows/dev-ci-builds.yml b/.github/workflows/dev-ci-builds.yml index 5b7a90c..e5b7879 100644 --- a/.github/workflows/dev-ci-builds.yml +++ b/.github/workflows/dev-ci-builds.yml @@ -12,10 +12,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: '8.0.x' @@ -43,7 +43,7 @@ jobs: shell: pwsh - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: CreamInstaller-CI-${{ env.branch }}-${{ env.shortSha }} path: ./publish/CreamInstaller-CI-${{ env.branch }}-${{ env.shortSha }}.exe