From 60bbc62e1dcef6aa8ebe1d15d233e3b948c9a9fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 13:31:05 +0000 Subject: [PATCH] Bump the major-updates group with 4 updates Bumps the major-updates group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [perl-actions/install-with-cpm](https://github.com/perl-actions/install-with-cpm). Updates `actions/checkout` from 3 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v7) Updates `actions/upload-artifact` from 3 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v7) Updates `actions/download-artifact` from 3 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v8) Updates `perl-actions/install-with-cpm` from 1 to 2 - [Release notes](https://github.com/perl-actions/install-with-cpm/releases) - [Commits](https://github.com/perl-actions/install-with-cpm/compare/v1...v2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates - dependency-name: perl-actions/install-with-cpm dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 5bef55c..b142cd5 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -17,7 +17,7 @@ jobs: container: image: perldocker/perl-tester:5.36 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - name: Run Tests env: AUTHOR_TESTING: 1 @@ -25,7 +25,7 @@ jobs: EXTENDED_TESTING: 1 RELEASE_TESTING: 1 run: auto-build-and-test-dist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 with: name: build_dir path: build_dir @@ -35,8 +35,8 @@ jobs: container: image: perldocker/perl-tester:5.36 steps: - - uses: actions/checkout@v3 # codecov wants to be inside a Git repository - - uses: actions/download-artifact@v3 + - uses: actions/checkout@v7 # codecov wants to be inside a Git repository + - uses: actions/download-artifact@v8 with: name: build_dir path: . @@ -88,12 +88,12 @@ jobs: with: perl-version: ${{ matrix.perl-version }} distribution: strawberry # this option only used on Windows - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v8 with: name: build_dir path: . - name: install deps using cpm - uses: perl-actions/install-with-cpm@v1 + uses: perl-actions/install-with-cpm@v2 with: cpanfile: "cpanfile" args: "--with-suggests --with-recommends --with-test"