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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results-node-${{ matrix.node-version }}
path: test-results/
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Upload coverage reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-reports
path: |
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
fi

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-artifacts
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/llm-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
--output benchmark-dashboard.html

- name: Upload benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: benchmark-results-${{ github.run_number }}
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
--output cost-optimization-report.json

- name: Upload optimization report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: cost-optimization-${{ github.run_number }}
path: cost-optimization-report.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
run: strip target/${{ matrix.target }}/release/${{ matrix.artifact_name }}

- name: Upload binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.target }}
path: target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
shell: bash

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ matrix.os }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
license-checker --failOn "GPL;AGPL;LGPL"

- name: Upload license report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: license-report
path: licenses.json
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
npx @cyclonedx/cyclonedx-npm --output-file sbom.json

- name: Upload SBOM
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sbom
path: sbom.json
Expand Down
Loading