From 5af4b44a85e93d9949c1219cca075cfdb009a437 Mon Sep 17 00:00:00 2001 From: Martin Mader Date: Fri, 8 Dec 2023 14:54:36 +0100 Subject: [PATCH] change github actions to v4 --- .github/workflows/python-app.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 3a1b2cc..9e46a02 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -25,9 +25,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: "3.9.10" - name: Install dependencies @@ -35,7 +35,7 @@ jobs: python -m pip install --upgrade pip pip install flake8 pip install -r requirements.txt - pip install -r test/requirements.txt - name: Run tests run: | + pip install -r test/requirements.txt pytest