From 946cf1ebacb1c3790c023c895e446dc7b8a67e0e Mon Sep 17 00:00:00 2001 From: bruno-f-cruz Date: Fri, 4 Aug 2023 17:10:11 +0100 Subject: [PATCH] Use pip to install workflow dependencies --- .github/workflows/gen-whoami-table.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gen-whoami-table.yml b/.github/workflows/gen-whoami-table.yml index 272dd3a..d25de1a 100644 --- a/.github/workflows/gen-whoami-table.yml +++ b/.github/workflows/gen-whoami-table.yml @@ -21,10 +21,9 @@ jobs: - uses: actions/setup-python@v4 with: python-version: '3.10' - - name: Install Python dependencies - uses: py-actions/py-dependency-install@v4 - with: - path: ".github/workflows/requirements.txt" + - name: Install workflow dependencies + run: | + pip install -r .github/workflows/requirements.txt - name: Generate table run: | python3 .github/workflows/gen-whoami-table.py whoami.yml