diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ff43e84..4e11b3d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,7 +46,7 @@ jobs: - run: dotnet pack src/Sessionize.Api.Client/Sessionize.Api.Client.csproj -c Release -p:AssemblyVersion=${{ needs.version.outputs.assemblySemFileVer }} -p:FileVersion=${{ needs.version.outputs.assemblySemFileVer }} -p:InformationalVersion=${{ needs.version.outputs.sha }} -p:PackageVersion=${{ needs.version.outputs.majorMinorPatch }} - name: Publish Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: nuget-package path: src/Sessionize.Api.Client/bin/Release/*${{ needs.version.outputs.majorMinorPatch }}.nupkg diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 9c2c662..9c2b0b0 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -54,7 +54,7 @@ jobs: .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}" - name: Publish Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: coverage-report path: coverage.xml