fix(ci): use actions/checkout@v3 when using centos7 image (#4679)

This commit is contained in:
Kevin Duret 2023-09-29 14:38:50 +02:00 committed by GitHub
parent aa45bfa7ff
commit e365d5e712
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -140,6 +140,11 @@ jobs:
steps:
- name: Checkout sources
if: ${{ matrix.distrib == 'el7' }}
uses: actions/checkout@v3
- name: Checkout sources
if: ${{ matrix.distrib != 'el7' }}
uses: actions/checkout@v4
- uses: actions/cache/restore@v3