From 9b5b060edbb0a0c213caffbf083ccc354367b5c4 Mon Sep 17 00:00:00 2001 From: Sn1p3rr3c0n <68663281+Sn1p3rr3c0n@users.noreply.github.com> Date: Fri, 26 Jul 2024 09:17:15 +0200 Subject: [PATCH] hopefully fix Action Build Issues --- .github/workflows/build_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index e516f739..81929602 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -8,11 +8,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 5.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore Source/Source.sln - name: Build