From 94e08fb4326e8b82ec9a47fd4c2bb40f61451f76 Mon Sep 17 00:00:00 2001 From: tesar-tech Date: Sat, 30 Nov 2024 22:17:15 +0100 Subject: [PATCH 1/2] removes unnecessary .net setup; updates version of checkout --- .github/workflows/blazorise-ci-basic.yml | 26 +----------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/.github/workflows/blazorise-ci-basic.yml b/.github/workflows/blazorise-ci-basic.yml index d0a24a791e..9cdc1dba79 100644 --- a/.github/workflows/blazorise-ci-basic.yml +++ b/.github/workflows/blazorise-ci-basic.yml @@ -8,32 +8,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - name: Setup .NET 6 - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '6.0.x' - include-prerelease: true - - - name: Setup .NET 7 - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '7.0.x' - include-prerelease: true - - - name: Setup .NET 8 - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '8.0.x' - include-prerelease: true - - - name: Setup .NET 9 - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '9.0.x' - include-prerelease: true - - name: Restore NuGet Packages run: dotnet restore From 0700fe3a8918d9081e52ae3dc8f2569e0010637e Mon Sep 17 00:00:00 2001 From: tesar-tech Date: Sat, 30 Nov 2024 22:21:47 +0100 Subject: [PATCH 2/2] apparently .net 9 isn't part of the ubuntu-latest yet. --- .github/workflows/blazorise-ci-basic.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/blazorise-ci-basic.yml b/.github/workflows/blazorise-ci-basic.yml index 9cdc1dba79..d2d8222497 100644 --- a/.github/workflows/blazorise-ci-basic.yml +++ b/.github/workflows/blazorise-ci-basic.yml @@ -9,6 +9,11 @@ jobs: steps: - uses: actions/checkout@v4 + + - name: Setup .NET 9 + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '9.0.x' - name: Restore NuGet Packages run: dotnet restore