From 4878756d09b42e9ef3f2d6ea154ea2d8914d9c38 Mon Sep 17 00:00:00 2001 From: Julien Roncaglia Date: Thu, 5 Sep 2024 23:47:18 +0200 Subject: [PATCH] More .NET versions in GH Actions --- .github/workflows/main.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 785d5c1..3d3dded 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,12 @@ jobs: DOTNET_NOLOGO: 1 PAKET_SKIP_RESTORE_TARGETS: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 2 + 5 - name: Restore packages run: ./paket.sh restore - name: Compile build script @@ -30,7 +35,12 @@ jobs: DOTNET_NOLOGO: 1 PAKET_SKIP_RESTORE_TARGETS: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 2 + 5 - name: Restore packages run: ./paket.cmd restore - name: Compile build script