From a6eb6160105b48c8289f823a921905c7108d4a1d Mon Sep 17 00:00:00 2001 From: Rico Suter Date: Wed, 12 Jun 2024 21:53:56 +0200 Subject: [PATCH] update --- .github/workflows/build.yml | 12 ++++++++++++ .github/workflows/pr.yml | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 82c3d65546..a1242d0e58 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,6 +40,10 @@ jobs: run: | echo "Adding GNU tar to PATH" echo C:\Program Files\Git\usr\bin>>"%GITHUB_PATH%" + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: | + 6.0.423 - uses: actions/checkout@v3 - name: 'Run: Compile, Test, Pack, Publish' run: ./build.cmd Compile Test Pack Publish @@ -72,6 +76,10 @@ jobs: name: ubuntu-latest runs-on: ubuntu-latest steps: + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: | + 6.0.423 - uses: actions/checkout@v3 - name: 'Run: Compile, Test, Pack, Publish' run: ./build.cmd Compile Test Pack Publish @@ -84,6 +92,10 @@ jobs: name: macos-latest runs-on: macos-latest steps: + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: | + 6.0.423 - uses: actions/checkout@v3 - name: 'Run: Compile, Test, Pack, Publish' run: ./build.cmd Compile Test Pack Publish diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 78bd0912de..6198fa53bc 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -38,6 +38,10 @@ jobs: run: | echo "Adding GNU tar to PATH" echo C:\Program Files\Git\usr\bin>>"%GITHUB_PATH%" + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: | + 6.0.423 - uses: actions/checkout@v3 - name: 'Run: Compile, Test, Pack' run: ./build.cmd Compile Test Pack @@ -65,6 +69,10 @@ jobs: name: ubuntu-latest runs-on: ubuntu-latest steps: + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: | + 6.0.423 - uses: actions/checkout@v3 - name: 'Run: Compile, Test, Pack' run: ./build.cmd Compile Test Pack @@ -72,6 +80,10 @@ jobs: name: macos-latest runs-on: macos-latest steps: + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: | + 6.0.423 - uses: actions/checkout@v3 - name: 'Run: Compile, Test, Pack' run: ./build.cmd Compile Test Pack