From b20ba5a2d6a02f41205124975cf7de5bae177b77 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Fri, 10 Mar 2023 14:40:37 +0100 Subject: [PATCH] Use requirement files instead of extras (#4) --- README.md | 2 +- action.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b236244..b83da5f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This GitHub Action encapsulates common steps that are executed in GitHub Action ``` - id: common - uses: ghga-de/gh-action-common@v1 + uses: ghga-de/gh-action-common@v2 ``` The action outputs the following values: diff --git a/action.yaml b/action.yaml index 4cd3a89..7417ace 100644 --- a/action.yaml +++ b/action.yaml @@ -52,4 +52,4 @@ runs: - name: Install Dependencies shell: bash run: | - pip install ".[all]" + pip install -r requirements.txt -r requirements-dev.txt