Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/accessibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: jest-axe-results
path: frontend/coverage/
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Upload Lighthouse reports
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: lighthouse-reports
path: frontend/lighthouse-reports/
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

- name: Upload axe reports
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: axe-reports
path: frontend/axe-reports/
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:

- name: Upload Pa11y report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: pa11y-report
path: frontend/pa11y-report.json
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/contract-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
working-directory: contracts/predict-iq

- name: Upload WASM artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: contract-wasm
path: contracts/predict-iq/target/wasm32-unknown-unknown/release/predict_iq_optimized.wasm
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
EOF

- name: Upload deployment info
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: testnet-deployment-${{ github.run_id }}
path: deployment-info.json
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
EOF

- name: Upload deployment info
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: mainnet-deployment-${{ github.run_id }}
path: deployment-info.json
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
EOF

- name: Upload versioned artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: versioned-contract-artifacts
path: versioned-artifacts/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
-out=tfplan-${{ matrix.environment }}

- name: Upload plan
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: tfplan-${{ matrix.environment }}
path: infrastructure/terraform/tfplan-${{ matrix.environment }}
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
run: terraform output -json > /tmp/outputs-${{ matrix.environment }}.json

- name: Upload outputs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: outputs-${{ matrix.environment }}
path: /tmp/outputs-${{ matrix.environment }}.json
6 changes: 3 additions & 3 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:

- name: Upload performance reports
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: performance-reports
path: performance/backend/reports/
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
cargo bench --bench gas_benchmark -- --save-baseline main

- name: Upload benchmark results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: contract-benchmarks
path: contracts/predict-iq/target/criterion/
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:

- name: Upload regression report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: regression-report
path: performance/backend/reports/regression-report.md
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,11 @@ jobs:
tag_name: ${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload release artifacts
if: success()
uses: actions/upload-artifact@v7
with:
name: release-notes
path: CHANGELOG.md
if-no-files-found: ignore
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:

- name: Upload benchmark report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: gas-benchmark-report
path: contracts/predict-iq/target/gas-benchmark-report.md
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
--html --output-dir ../../coverage-reports/predictiq-api-html

- name: Upload HTML + LCOV artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: backend-coverage
path: |
Expand Down Expand Up @@ -641,7 +641,7 @@ jobs:

- name: Upload Playwright report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: playwright-market-creation-report
path: frontend/playwright-report/
Expand Down
Loading