Skip to content

Commit cd4d05c

Browse files
authored
Merge pull request #206 from choroba/actions-v4
Use V4 of actions/{checkout,cache} to upgrade node.js from 16 to 20
2 parents f907004 + 2255d6a commit cd4d05c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,16 +273,16 @@ jobs:
273273
steps:
274274
- name: Checkout git commit ${{ github.sha }}
275275
if: github.event_name != 'pull_request'
276-
uses: actions/checkout@v3
276+
uses: actions/checkout@v4
277277
with:
278278
ref: ${{ github.sha }}
279279
- name: Checkout git commit ${{ github.event.pull_request.head.sha }} (fixup for pull request)
280280
if: github.event_name == 'pull_request'
281-
uses: actions/checkout@v3
281+
uses: actions/checkout@v4
282282
with:
283283
ref: ${{ github.event.pull_request.head.sha }}
284284
- name: Setup cpan sources cache
285-
uses: actions/cache@v3
285+
uses: actions/cache@v4
286286
with:
287287
path: ~/.cpan/sources
288288
key: cache-cpan

0 commit comments

Comments
 (0)