diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 747b584..cef0f7e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -34,7 +34,7 @@ jobs: run: dotnet test --no-build --verbosity normal --logger "trx" --configuration Release src/ByteAether.QueryLink.sln - name: Upload test results - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: test-results path: ./**/TestResults/**/*.trx \ No newline at end of file diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml index 13f40ec..5c147c8 100644 --- a/.github/workflows/publish-nuget.yml +++ b/.github/workflows/publish-nuget.yml @@ -28,7 +28,7 @@ jobs: run: dotnet pack --configuration Release /p:ContinuousIntegrationBuild=true /p:PackageVersion=${{ steps.version.outputs.version-without-v }} /p:PackageReleaseNotes="See https://github.com/ByteAether/QueryLink/releases/tag/${{ github.event.release.tag_name }}" --output ./output src/ByteAether.QueryLink/ByteAether.QueryLink.csproj - name: Upload NuGet package as artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: nuget-package path: ./output/*.nupkg