Skip to content

Commit 65d59d6

Browse files
authored
Merge pull request #5 from davorg-cpan/dependabot/github_actions/actions/upload-artifact-4
Bump actions/upload-artifact from 3 to 4
2 parents 7dd813d + 30736f0 commit 65d59d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/buildsite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
if [ "$GIT_STATUS" != "" ]; then git push; fi
3939
- name: Archive CPAN logs
4040
if: ${{ failure() }}
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: cpan_log
4444
path: .cpanm/work/*/build.log

.github/workflows/perltest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
- run: prove -lv t
3333
- name: Archive CPAN logs on Windows
3434
if: ${{ failure() }} && runner.os == 'Windows'
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: cpan_log
3838
path: C:\Users\RUNNER~1\.cpanm\work\*\build.log
3939
- name: Archive CPAN logs on non-Windows
4040
if: ${{ failure() }} && runner.os != 'Windows'
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: cpan_log
4444
path: $HOME/.cpanm/work/*/build.log

0 commit comments

Comments
 (0)