Skip to content

Commit df7fe26

Browse files
committed
Merge branch 'main' of github.com:davorg/app-cpanmodulesite
2 parents fc07e65 + 65d59d6 commit df7fe26

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/buildsite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Install cpanm
1515
run: |
@@ -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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
perl: [ 'latest' ]
1717
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Set up perl
2121
uses: shogo82148/actions-setup-perl@v1
2222
with:
@@ -27,13 +27,13 @@ jobs:
2727
- run: prove -lv t
2828
- name: Archive CPAN logs on Windows
2929
if: ${{ failure() }} && runner.os == 'Windows'
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: cpan_log
3333
path: C:\Users\RUNNER~1\.cpanm\work\*\build.log
3434
- name: Archive CPAN logs on non-Windows
3535
if: ${{ failure() }} && runner.os != 'Windows'
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: cpan_log
3939
path: $HOME/.cpanm/work/*/build.log
@@ -43,7 +43,7 @@ jobs:
4343
container: davorg/perl-coveralls:latest
4444
name: Test coverage
4545
steps:
46-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4747
- run: cpanm --notest File::ShareDir::Install
4848
- run: cpanm --notest --installdeps .
4949
- name: Install modules

0 commit comments

Comments
 (0)