From 813765c65c8203e3160172fe9880fe6ac29613d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:40:36 +0000 Subject: [PATCH] Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cpan-dzil-test.yml | 4 ++-- .github/workflows/cpan-test-new.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cpan-dzil-test.yml b/.github/workflows/cpan-dzil-test.yml index b98cbff..049b91d 100644 --- a/.github/workflows/cpan-dzil-test.yml +++ b/.github/workflows/cpan-dzil-test.yml @@ -44,14 +44,14 @@ jobs: dzil test - name: Archive CPAN logs on Windows if: ${{ failure() && matrix.os == 'windows-latest' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cpan_log path: C:\Users\RUNNER~1\.cpanm\work\*\build.log retention-days: 5 - name: Archive CPAN logs on Unix if: ${{ failure() && matrix.os != 'windows-latest' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cpan_log path: /home/runner/.cpanm/work/*/build.log diff --git a/.github/workflows/cpan-test-new.yml b/.github/workflows/cpan-test-new.yml index 2a033f9..49c0061 100644 --- a/.github/workflows/cpan-test-new.yml +++ b/.github/workflows/cpan-test-new.yml @@ -48,14 +48,14 @@ jobs: run: prove -lv t - name: Archive CPAN logs on Windows if: ${{ failure() && matrix.os == 'windows-latest' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cpan_log path: C:\Users\RUNNER~1\.cpanm\work\*\build.log retention-days: 5 - name: Archive CPAN logs on Unix if: ${{ failure() && matrix.os != 'windows-latest' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cpan_log path: /home/runner/.cpanm/work/*/build.log