Skip to content

Commit 4dff6bb

Browse files
committed
update actions
1 parent a2eb83c commit 4dff6bb

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/auto_merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
auto-merge:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
11-
- uses: ahmadnassri/action-dependabot-auto-merge@v2
10+
- uses: actions/checkout@v4
11+
- uses: ahmadnassri/action-dependabot-auto-merge@v2.6
1212
with:
1313
github-token: ${{ secrets.DEPENDABOT_AUTOMERGE }}

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@master
11+
- uses: actions/checkout@v4
1212
- name: Set up Python 3.8
13-
uses: actions/setup-python@v2.2.2
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: 3.8
1616
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
publish-pypi:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@master
9+
- uses: actions/checkout@v4
1010
- name: Set up Python 3.8
11-
uses: actions/setup-python@v2.2.2
11+
uses: actions/setup-python@v5
1212
with:
1313
python-version: 3.8
1414
- name: Install dependencies
@@ -17,7 +17,7 @@ jobs:
1717
run: python setup.py sdist bdist_wheel
1818
- name: Publish distribution 📦 to PyPI
1919
if: startsWith(github.event.ref, 'refs/tags')
20-
uses: pypa/gh-action-pypi-publish@master
20+
uses: pypa/gh-action-pypi-publish@v1
2121
with:
2222
user: __token__
2323
password: ${{ secrets.pypi_password }}

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- name: Set up Python
11-
uses: actions/setup-python@v2.2.2
11+
uses: actions/setup-python@v5
1212
with:
1313
python-version: 3.8
1414
- name: Install dependencies
@@ -20,11 +20,11 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: [3.7, 3.8, 3.9, '3.10']
23+
python-version: [3.8, 3.9, '3.10']
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v2.2.2
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
- name: Install dependencies
@@ -35,17 +35,17 @@ jobs:
3535
coverage:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@master
38+
- uses: actions/checkout@v4
3939
- name: Setup Python
40-
uses: actions/setup-python@v2.2.2
40+
uses: actions/setup-python@v5
4141
with:
4242
python-version: 3.8
4343
- name: Install dependencies
4444
run: make install-test
4545
- name: Generate coverage report
4646
run: pytest --cov-report=xml
4747
- name: Upload coverage to Codecov
48-
uses: codecov/codecov-action@v1.5.0
48+
uses: codecov/codecov-action@v4
4949
with:
5050
file: ./coverage.xml
5151
flags: unittests

0 commit comments

Comments
 (0)