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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
JEST_TIMEOUT: 30000

- name: Upload backend coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: matrix.node-version == 24
with:
name: backend-coverage
Expand All @@ -203,7 +203,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: backend-test-results-node-${{ matrix.node-version }}
path: |
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
NODE_ENV: test

- name: Upload webapp coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: matrix.node-version == 24
with:
name: webapp-coverage
Expand Down Expand Up @@ -457,7 +457,7 @@ jobs:
run: npm run build:backend

- name: Upload backend build artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: matrix.node-version == 24
with:
name: backend-dist
Expand All @@ -480,7 +480,7 @@ jobs:
NEXT_PUBLIC_RPC_URL: ${{ secrets.NEXT_PUBLIC_RPC_URL || 'https://api.mainnet-beta.solana.com' }}

- name: Upload webapp build artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: matrix.node-version == 24
with:
name: webapp-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/complete-production-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:

- name: Upload artifacts
if: matrix.retry == 1
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build-artifacts
path: |
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
run: npm run setup-monitoring

- name: Upload monitoring configs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: monitoring-configs
path: monitoring/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gxq-deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ jobs:
run: bash scripts/validate-build.sh

- name: Upload backend artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: backend-dist
path: dist/
retention-days: 1

- name: Upload webapp artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: webapp-build
path: webapp/.next/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gxq-master-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
run: npm run build:backend

- name: Upload backend artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: backend-dist
path: dist/
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
NEXT_PUBLIC_RPC_URL: https://api.mainnet-beta.solana.com

- name: Upload webapp artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: webapp-build
path: webapp/.next/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/powershell-merge-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:

- name: Upload Merge Logs
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: merge-logs-${{ github.run_number }}-${{ github.run_attempt }}
path: scripts/merge-log-*.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/self-optimize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ jobs:
}

- name: Upload analysis artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: self-optimization-reports
Expand Down
Loading