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

hotfix: fixed CI - bumped upload articact to v4 #284

Merged
merged 1 commit into from
Sep 4, 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
8 changes: 4 additions & 4 deletions .github/workflows/ci_module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ jobs:
tar -czf openimis.tar.gz ./openimis ./current-module

- name: Upload compressed site-packages as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: site-packages
path: site-packages.tar.gz

- name: Upload build as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: code-artifacts
path: openimis.tar.gz
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
cat coverage.xml
- name: Coverage results
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage.xml
path: ./openimis/openIMIS/coverage
Expand Down Expand Up @@ -498,7 +498,7 @@ jobs:
python -m flake8 $MOD_DIR
- name: Flake8 results upload
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: flake8-report.txt
path: ./openimis/flake8-report.txt
Expand Down
Loading