Skip to content

Commit

Permalink
Use V4 of actions/{checkout,cache} to upgrade node.js from 16 to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
choroba committed Jun 29, 2024
1 parent f907004 commit 2255d6a
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 2255d6a

Please sign in to comment.