Skip to content

Commit f3d425c

Browse files
committed
Bump GitHub actions versions
While at it, rename the job ID and name it, for clarity.
1 parent 885b729 commit f3d425c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ on:
77
branches: [ main ]
88

99
jobs:
10-
build:
11-
10+
ubuntu-tox-python-matrix:
11+
name: Run tox on a Ubuntu latest system, with a matrix of Python versions
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
1515
python-version: [3.9, 3.11]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- name: Set up Python
20-
uses: actions/setup-python@v1
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install Tox and any other packages
2424
run: pip install tox
2525
- name: Run Tox
2626
run: tox
2727
- name: Archive code coverage results
28-
uses: actions/upload-artifact@v1
28+
uses: actions/upload-artifact@v3
2929
with:
3030
name: code-coverage-report
3131
path: .tox/htmlcov/

0 commit comments

Comments
 (0)