From f797ba566eaf99e6fa455580e2aab3e79f6554d8 Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Thu, 10 Oct 2024 11:15:13 +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 c77031d76..ec1102cde 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 }}"