summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTW <tw@waldmann-edv.de>2024-04-03 19:33:35 +0200
committerGitHub <noreply@github.com>2024-04-03 19:33:35 +0200
commit4d2eb0cb1b361daf076fbdf7ed13d7bcb67ca342 (patch)
tree33faa38bfb22f9dfc9703b781e2444217ff11497
parentfb4b4cfeb8bd256056c4390cd5636c1be343e637 (diff)
parentd893b899fc2d6749d68a512f1b4269bd484ad875 (diff)
Merge pull request #8181 from ThomasWaldmann/github-actions-update-master
update github actions
-rw-r--r--.github/workflows/black.yaml2
-rw-r--r--.github/workflows/ci.yml6
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/black.yaml b/.github/workflows/black.yaml
index 75ffea94b..f382af79a 100644
--- a/.github/workflows/black.yaml
+++ b/.github/workflows/black.yaml
@@ -9,7 +9,7 @@ jobs:
lint:
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: psf/black@stable
with:
version: "~= 23.0"
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 816a79c4f..d1c665f72 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -78,11 +78,11 @@ jobs:
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.d/development.txt') }}
@@ -114,7 +114,7 @@ jobs:
#sudo -E bash -c "tox -e py"
tox --skip-missing-interpreters
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
env:
OS: ${{ runner.os }}
python: ${{ matrix.python-version }}