Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update github artifact actions to v4 (major) #3210

Merged
merged 1 commit into from
Feb 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: DISABLE_TYPEORM_CLOSE=1 yarn workspace @domifa/backend jest --coverage --detectOpenHandles --forceExit --runInBand

- name: Archive code coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: backend-coverage
path: packages/backend/coverage
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
run: yarn workspace @domifa/frontend test --coverage --detectOpenHandles --forceExit

- name: Archive code coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: frontend-coverage
path: packages/frontend/coverage
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
run: yarn workspace @domifa/portail-usagers test --coverage --detectOpenHandles --forceExit

- name: Archive code coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: portail-usagers-coverage
path: packages/portail-usagers/coverage
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
run: yarn workspace @domifa/portail-admins test --coverage --detectOpenHandles --forceExit

- name: Archive code coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: portail-admins-coverage
path: packages/portail-admins/coverage
Expand All @@ -174,13 +174,13 @@ jobs:
ref: ${{ github.event.pull_request.head.sha || github.sha }}

- name: Download backend coverage
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: backend-coverage
path: packages/backend/coverage

- name: Download front-end coverage
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: frontend-coverage
path: packages/frontend/coverage
Expand Down
Loading