From ce69be0a014d73e3ee899294e44c9be2d1289e86 Mon Sep 17 00:00:00 2001 From: Arnei Date: Thu, 10 Oct 2024 10:39:33 +0200 Subject: [PATCH] Fix ICLA Check Copied from https://github.com/opencast/opencast/pull/6238 The tool we use for checking if contributors signed their ICLA is failing to install on CI runs with new Python versions since we just install it system wide. While that may not be good practice on your local machine, this shouldn't matter in the CI since we immediately throw away the machine anyway. --- .github/workflows/check-icla.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-icla.yml b/.github/workflows/check-icla.yml index c77031d76b..ec1102cde1 100644 --- a/.github/workflows/check-icla.yml +++ b/.github/workflows/check-icla.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install Python module - run: pip install apereocla + run: pip install --break-system-packages apereocla - name: Check Apereo ICLA for GitHub user run: apereocla -g "${{ github.event.pull_request.user.login }}"