From 77b3d7679cf95ae8566288e843913061cf26260c Mon Sep 17 00:00:00 2001 From: nicrowe00 Date: Mon, 3 Nov 2025 10:19:22 +0000 Subject: [PATCH] Update release workflow file actions/upload-artifactv2 is deprecated and is being updated to v4 .NET 6 is depreacted and is being updated to .NET 8 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 696c91a..92a8d39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Install dependencies run: | - dnf install -y dotnet-sdk-6.0 git make + dnf install -y dotnet-sdk-8.0 git make - uses: actions/checkout@v3 with: @@ -34,7 +34,7 @@ jobs: make publish - name: Upload build artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: release-binaries path: turkey.tar.gz