From 031557eeb2272bace9d7db7dedbd68ff1ce134ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20G=C3=A5rdenberg?= Date: Tue, 4 Jun 2024 07:41:06 +0200 Subject: [PATCH] ci: Upgrade .NET in the CI stuff --- .github/workflows/app-release.yml | 4 ++-- .github/workflows/dotnet-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/app-release.yml b/.github/workflows/app-release.yml index 0375177..4b94495 100644 --- a/.github/workflows/app-release.yml +++ b/.github/workflows/app-release.yml @@ -17,12 +17,12 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Build shell: bash diff --git a/.github/workflows/dotnet-ci.yml b/.github/workflows/dotnet-ci.yml index 61d824d..00d260f 100644 --- a/.github/workflows/dotnet-ci.yml +++ b/.github/workflows/dotnet-ci.yml @@ -21,12 +21,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore