Skip to content

Commit 0105a9d

Browse files
authored
chore/update github actions (#204)
1 parent f99ebc6 commit 0105a9d

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/publish-pypi-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Cloning repo
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/pull-request.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,16 @@ jobs:
1919

2020
steps:
2121
- name: Cloning repo
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
submodules: recursive
2626

2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v5
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

32-
- name: Cache pip download
33-
uses: syphar/restore-pip-download-cache@v1
34-
3532
- name: Install Dependencies
3633
run: |
3734
python -m pip install --upgrade pip
@@ -55,7 +52,7 @@ jobs:
5552
run: pytest -p no:warnings
5653

5754
- name: Check Coverage
58-
uses: 5monkeys/cobertura-action@v13
55+
uses: 5monkeys/cobertura-action@v14
5956
with:
6057
minimum_coverage: 100
6158
fail_below_threshold: true

0 commit comments

Comments
 (0)