Skip to content

Commit

Permalink
Merge pull request #206 from choroba/actions-v4
Browse files Browse the repository at this point in the history
Use V4 of actions/{checkout,cache} to upgrade node.js from 16 to 20
  • Loading branch information
Tux authored Jun 30, 2024
2 parents f907004 + 2255d6a commit cd4d05c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -273,16 +273,16 @@ 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
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cpan/sources
key: cache-cpan
Expand Down

0 comments on commit cd4d05c

Please sign in to comment.