Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Create Slither report artifact
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: slither-report
path: |
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
run: REPORT_GAS=true npm test || true

- name: Upload gas report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: gas-report
path: packages/contracts/gas-report.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
BASESCAN_API_KEY: ${{ secrets.BASESCAN_API_KEY }}

- name: Save deployment artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: production-deployment
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
continue-on-error: true

- name: Save deployment artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: staging-deployment
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: playwright-report
path: apps/web/playwright-report/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
NODE_ENV: production

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-output
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
continue-on-error: true

- name: Upload audit report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: npm-audit-report
path: audit-report.txt
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
--rule 'security/detect-unsafe-regex: error' || true

- name: Upload ESLint report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: eslint-security-report
path: eslint-report.json
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
> license-report.txt || true

- name: Upload license report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: license-report
path: license-report.txt
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
echo "- SAST Scan: ${{ needs.sast-scan.result }}" >> security-summary.md

- name: Upload security summary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: security-summary
path: security-summary.md
Expand Down
Loading