Skip to content

Commit b6f7a97

Browse files
committed
Update versions of actions used in check workflow
1 parent e84a36c commit b6f7a97

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/check.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
python-version: ["3.10"]
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919

@@ -24,7 +24,7 @@ jobs:
2424
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2525
2626
- name: Setup Graphviz
27-
uses: ts-graphviz/setup-graphviz@v1
27+
uses: ts-graphviz/setup-graphviz@v2
2828

2929
- name: Lint with flake8
3030
run: |
@@ -36,7 +36,7 @@ jobs:
3636
pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
3737
3838
- name: Upload pytest test results
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: pytest-results
4242
path: junit/test-results.xml

0 commit comments

Comments
 (0)