From e97a09fdb9c9ebf31b25f324a2cb8e74b875b03a Mon Sep 17 00:00:00 2001 From: Baptiste Grenier Date: Mon, 17 Jun 2024 09:29:28 +0200 Subject: [PATCH] actions/checkout v4 do not work on RHEL 7 (#61) actions/checkout v4 do not work on RHEL 7. See https://github.com/EGI-Federation/bdii/actions/runs/9543330578/job/26299738320 At some point we will drop support for packaging and releasing for CentOS 7, but it wasn't yet decided. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3c45584..95fdbca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,8 @@ jobs: runs-on: ubuntu-latest container: quay.io/centos/centos:7 steps: - - uses: actions/checkout@v4 + # XXX: Checkout v4 do not work on RHEL 7 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: install build requisites