From 4384cb8a66765bb628559d2f748b748b97a5cb03 Mon Sep 17 00:00:00 2001 From: Diego Ferigo Date: Fri, 8 Nov 2024 15:45:55 +0100 Subject: [PATCH] Workaround to fix new isort action --- .github/workflows/style.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 730cf33..9ee3e50 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -45,9 +45,10 @@ jobs: python-version: "3.10" # Workaround for https://github.com/isort/isort-action/issues/70 - - run: pip install colorama + - run: echo "colorama" >> /tmp/isort.requirements.txt - name: "📝 isort" uses: isort/isort-action@master with: configuration: --check --diff --color + requirements-files: /tmp/isort.requirements.txt