Skip to content

Commit

Permalink
update upload and download actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerm-iguazio committed Jun 4, 2024
1 parent bd162b3 commit 3ae65c8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/push-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: Dev Changes
on:
push:
branches:
- development
# TODO return - development
- local-coverage

jobs:
test:
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit 3ae65c8

Please sign in to comment.