diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2b58df83..b879c85c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,10 +21,10 @@ jobs: with: fetch-depth: 0 - - name: Install .NET 7.0 + - name: Install .NET 8.0 uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore src/Lavalink4NET.sln @@ -56,13 +56,13 @@ jobs: cat coverage/Summary.txt - name: Archive code coverage results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: CoverageSummary.html path: coverage/summary.html - name: Archive code coverage history - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: CoverageHistory.html path: coverage/history/*.xml