diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e37477..6467978 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: run: dotnet build --configuration Release --no-restore - name: Publicar artefacto compilado - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: build-output path: src/FinancialUtils/bin/Release/ @@ -90,7 +90,7 @@ jobs: --logger "trx;LogFileName=test-results.trx" - name: Subir reporte de cobertura - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-report path: coverage/ @@ -98,7 +98,7 @@ jobs: if-no-files-found: error - name: Subir resultados de pruebas - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: test-results diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 2468a2c..e2e268e 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -54,7 +54,7 @@ jobs: --logger "trx;LogFileName=test-results.trx" - name: Subir resultado por combinación - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: results-dotnet${{ matrix.dotnet-version }}-${{ matrix.os }}