Skip to content

Commit 7255c14

Browse files
committed
Assign GH Actions commits correctly. Update Actions
1 parent 52980c8 commit 7255c14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/buildsite.yml

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

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

1414
- name: Install cpanm
1515
run: |
@@ -31,14 +31,14 @@ jobs:
3131
run: |
3232
GIT_STATUS=$(git status --porcelain)
3333
echo $GIT_STATUS
34-
git config --global user.name 'Dave Cross'
35-
git config --global user.email 'dave@perlschool.com'
34+
git config user.name github-actions[bot]
35+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
3636
git add docs/
3737
if [ "$GIT_STATUS" != "" ]; then git commit -m "Web site generation"; fi
3838
if [ "$GIT_STATUS" != "" ]; then git push; fi
3939
- name: Archive CPAN logs
4040
if: ${{ failure() }}
41-
uses: actions/upload-artifact@v2
41+
uses: actions/upload-artifact@v3
4242
with:
4343
name: cpan_log
4444
path: .cpanm/work/*/build.log

0 commit comments

Comments
 (0)