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"