From 3ae65c8913c544010c76468e8da0f4fd73e9bc2a Mon Sep 17 00:00:00 2001 From: Tomer_Mamia Date: Tue, 4 Jun 2024 17:00:07 +0300 Subject: [PATCH] update upload and download actions versions --- .github/workflows/push-dev.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/push-dev.yml b/.github/workflows/push-dev.yml index be0e25b0..683f622f 100644 --- a/.github/workflows/push-dev.yml +++ b/.github/workflows/push-dev.yml @@ -3,7 +3,8 @@ name: Dev Changes on: push: branches: - - development + # TODO return - development + - local-coverage jobs: test: @@ -27,7 +28,7 @@ jobs: run: make full-coverage-unit-tests - name: Upload coverage report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: coverage_unit_tests_report path: full_unit_tests.coverage @@ -50,7 +51,7 @@ jobs: run: make coverage-integration - name: Upload coverage report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: coverage_integration_report path: integration.coverage @@ -69,13 +70,13 @@ jobs: - name: Install dependencies run: make dev-env - name: Download unit tests coverage report - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: coverage_unit_tests_report path: . # where to download. file downloaded by name. - name: Download integration coverage report - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: coverage_integration_report path: . # where to download. file downloaded by name.