Skip to content

Commit 606d86e

Browse files
committed
CI: Update action versions
1 parent 2f42948 commit 606d86e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/black.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
black:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Setup Python
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.x
2121
- name: Install black
@@ -28,7 +28,7 @@ jobs:
2828
black --version
2929
- name: Run black
3030
run: |
31-
black fortdepend setup.py tests
31+
black fortdepend tests
3232
- uses: stefanzweifel/git-auto-commit-action@v4
3333
with:
3434
commit_message: "Apply black changes"

.github/workflows/python_publish.yml

+3-3
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@v2
12-
- name: Set up Python
13-
uses: actions/setup-python@v2
11+
- uses: actions/checkout@v3
12+
- name: Setup Python
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: '3.x'
1616
- name: Install dependencies

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: [3.7, 3.8, 3.9]
11+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies

0 commit comments

Comments
 (0)