From b52b962ee01ef954d6135615e0806e2445498e5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 11:55:36 +0000 Subject: [PATCH] chore(deps)(deps): bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/llm-benchmark.yml | 4 ++-- .github/workflows/npm-publish.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/security.yml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ce49da..c91bdd6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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/ @@ -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: | @@ -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/ diff --git a/.github/workflows/llm-benchmark.yml b/.github/workflows/llm-benchmark.yml index 8e5bb3b..021a3f5 100644 --- a/.github/workflows/llm-benchmark.yml +++ b/.github/workflows/llm-benchmark.yml @@ -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 }} @@ -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 diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index b3cf9ac..1991d23 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -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 }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a3b689..a0606e2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index eb6e3f8..66beb46 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -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 @@ -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