From 832f25b54d3759252cb56801cc5b5f36412b5b5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 01:24:07 +0000 Subject: [PATCH] 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-linux.yml | 2 +- .github/workflows/ci-macos.yml | 2 +- .github/workflows/ci-windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 249ccf03..2dba8959 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -40,7 +40,7 @@ jobs: run: npm test - name: Upload test results artifact # Changed from 'Upload test results to GitHub Artifacts' if: always() # Ensure artifact is uploaded even if tests fail or job is cancelled - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test-results-${{ matrix.os }}-${{ matrix.node }} # Unique artifact name per job path: test-results.xml diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index b0f96e1a..1d5c6910 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -40,7 +40,7 @@ jobs: run: npm test - name: Upload test results artifact # Changed from 'Upload test results to GitHub Artifacts' if: always() # Ensure artifact is uploaded even if tests fail or job is cancelled - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test-results-${{ matrix.os }}-${{ matrix.node }} # Unique artifact name per job path: test-results.xml diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 79559f21..8fadb360 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -43,7 +43,7 @@ jobs: run: npm test - name: Upload test results artifact # Changed from 'Upload test results to GitHub Artifacts' if: always() # Ensure artifact is uploaded even if tests fail or job is cancelled - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test-results-${{ matrix.os }}-${{ matrix.node }} # Unique artifact name per job path: test-results.xml