From 010bb20f53cc81068824fc278c457ef1739f25e7 Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Thu, 28 Jul 2022 12:26:24 +0200 Subject: [PATCH] DEV: Workaround for licensed gem incompatibility with latest Bundler (#17704) --- .github/workflows/licenses.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/licenses.yml b/.github/workflows/licenses.yml index 129482e93d6..970ed87a2a8 100644 --- a/.github/workflows/licenses.yml +++ b/.github/workflows/licenses.yml @@ -45,7 +45,10 @@ jobs: - name: Setup licensed run: | - gem install licensed + # gem install licensed + # Workaround for https://github.com/github/licensed/issues/521 + gem install specific_install + gem specific_install https://github.com/CvX/licensed.git -b bundler-compat - name: Get yarn cache directory id: yarn-cache-dir