From 0105a9d407abb406b559765f07e7059ad5443924 Mon Sep 17 00:00:00 2001 From: Ben Rometsch Date: Tue, 26 Mar 2024 14:23:14 +0000 Subject: [PATCH] chore/update github actions (#204) --- .github/workflows/publish-pypi-package.yml | 2 +- .github/workflows/pull-request.yml | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish-pypi-package.yml b/.github/workflows/publish-pypi-package.yml index 5bbb713..039bb39 100644 --- a/.github/workflows/publish-pypi-package.yml +++ b/.github/workflows/publish-pypi-package.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 97744de..8cb5274 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -19,19 +19,16 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 submodules: recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - name: Cache pip download - uses: syphar/restore-pip-download-cache@v1 - - name: Install Dependencies run: | python -m pip install --upgrade pip @@ -55,7 +52,7 @@ jobs: run: pytest -p no:warnings - name: Check Coverage - uses: 5monkeys/cobertura-action@v13 + uses: 5monkeys/cobertura-action@v14 with: minimum_coverage: 100 fail_below_threshold: true