diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8dceb03..c8e1089 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: run: dotnet test --no-restore --no-build --collect:"XPlat Code Coverage" --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}" - name: Upload dotnet test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: dotnet-results-${{ matrix.dotnet-version }} path: TestResults-${{ matrix.dotnet-version }} diff --git a/.github/workflows/master_app-awapi-scrum-centralus-03.yml b/.github/workflows/master_app-awapi-scrum-centralus-03.yml index 07b2c3b..8b5b19b 100644 --- a/.github/workflows/master_app-awapi-scrum-centralus-03.yml +++ b/.github/workflows/master_app-awapi-scrum-centralus-03.yml @@ -30,7 +30,7 @@ jobs: run: dotnet publish -c Release -o "${{env.DOTNET_ROOT}}/myapp" - name: Upload artifact for deployment job - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: .net-app path: ${{env.DOTNET_ROOT}}/myapp diff --git a/.github/workflows/sonar-scan.yml b/.github/workflows/sonar-scan.yml index 90ccd03..33671f9 100644 --- a/.github/workflows/sonar-scan.yml +++ b/.github/workflows/sonar-scan.yml @@ -51,7 +51,7 @@ jobs: dotnet-sonarscanner end /d:sonar.token="$SONAR_TOKEN" - name: Upload dotnet test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: dotnet-results path: TestResults