diff --git a/.github/workflows/analyticq-backend.yml b/.github/workflows/analyticq-backend.yml index 44ef0c4..ebfbd4b 100644 --- a/.github/workflows/analyticq-backend.yml +++ b/.github/workflows/analyticq-backend.yml @@ -60,7 +60,7 @@ jobs: pytest analyticq-backend/tests/unit --cov=analyticq-backend --cov-report=xml:coverage.xml - name: Upload coverage report as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-report-${{ matrix.os }}-${{ matrix.python-version }}-${{ github.run_number }}-${{ github.sha }} path: coverage.xml @@ -71,7 +71,7 @@ jobs: bandit -r analyticq-backend -x analyticq-backend/tests -o bandit-report.txt -f txt --exit-zero - name: Upload Bandit report as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: bandit-report-${{ matrix.os }}-${{ matrix.python-version }}-${{ github.run_number }}-${{ github.sha }} path: bandit-report*.txt diff --git a/.github/workflows/analyticq-frontend.yml b/.github/workflows/analyticq-frontend.yml index 953571b..a0a492a 100644 --- a/.github/workflows/analyticq-frontend.yml +++ b/.github/workflows/analyticq-frontend.yml @@ -33,7 +33,7 @@ jobs: npx prettier . --write > prettier-report.txt - name: Upload Prettier Report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: prettier-report-${{ github.run_number }}-${{ github.sha }} path: analyticq-frontend/prettier-report.txt @@ -46,7 +46,7 @@ jobs: npx eslint . --ext .js,.ts,.jsx,.tsx -f json -o eslint-report.json - name: Upload ESLint report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: eslint-report-${{ github.run_number }}-${{ github.sha }} path: analyticq-frontend/eslint-report.json