Skip to content

Commit

Permalink
Update GitHub actions/checkout to v4
Browse files Browse the repository at this point in the history
Uses Node20, as Node16 is EOL
(actions/checkout#1436).
  • Loading branch information
choroba committed Jan 2, 2024
1 parent 5096566 commit 121cb22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Expand Up @@ -273,12 +273,12 @@ jobs:
steps:
- name: Checkout git commit ${{ github.sha }}
if: github.event_name != 'pull_request'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}
- name: Checkout git commit ${{ github.event.pull_request.head.sha }} (fixup for pull request)
if: github.event_name == 'pull_request'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup cpan sources cache
Expand Down

0 comments on commit 121cb22

Please sign in to comment.