From 5051cb53cb09650a3b35b4294fe2fb924e5f9708 Mon Sep 17 00:00:00 2001 From: sniedzielski Date: Wed, 4 Sep 2024 12:09:55 +0200 Subject: [PATCH] hotfix: fixed CI - bumped upload articact to v4 --- .github/workflows/ci_module.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_module.yml b/.github/workflows/ci_module.yml index b4fce97a..53ec4ef3 100755 --- a/.github/workflows/ci_module.yml +++ b/.github/workflows/ci_module.yml @@ -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 @@ -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 @@ -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