Skip to content

Bump actions/download-artifact from 4 to 5 #393

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
image: perldocker/perl-tester:5.36
steps:
- uses: actions/checkout@v4 # codecov wants to be inside a Git repository
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: build_dir
path: .
Expand All @@ -52,7 +52,7 @@ jobs:
container:
image: perldocker/perl-tester:5.34
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: build_dir
path: .
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpanm --notest Test::[email protected]
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: build_dir
path: .
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- name: pin Test::Deep to 1.130 on Perl < 5.12
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpm install --global Test::[email protected]
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: build_dir
path: .
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
- name: pin Test::Deep to 1.130 on Perl < 5.12
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpm install --global Test::[email protected]
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: build_dir
path: .
Expand Down
Loading