Skip to content

Commit 42cd7a2

Browse files
Merge pull request #29 from pollen-robotics/28-update-cicd-tools
28 update cicd tools
2 parents d6aa4a3 + d33159d commit 42cd7a2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: psf/black@stable
1212
with:
1313
options: "--check --verbose"
14-
version: "23.3.0"
14+
version: "23.12.1"
1515

1616
isort:
1717
runs-on: ubuntu-22.04

.github/workflows/pytest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
coverage json
2626
coverage html
2727
- name: Archive code coverage html report
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: code-coverage-report
3131
path: htmlcov
3232
- name: Get Cover
33-
uses: orgoro/coverage@v3
33+
uses: orgoro/coverage@v3.1
3434
with:
3535
coverageFile: coverage.xml
3636
token: ${{ secrets.GITHUB_TOKEN }}
@@ -40,7 +40,7 @@ jobs:
4040
echo "total=$TOTAL" >> $GITHUB_ENV
4141
echo "### Total coverage: ${TOTAL}%" >> $GITHUB_STEP_SUMMARY
4242
- name: Make badge
43-
uses: schneegans/dynamic-badges-action@v1.6.0
43+
uses: schneegans/dynamic-badges-action@v1.7.0
4444
with:
4545
# GIST_TOKEN is a GitHub personal access token with scope "gist".
4646
auth: ${{ secrets.GIST_TOKEN }}

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ install_requires =
2222
where=src
2323

2424
[options.extras_require]
25-
dev = black==23.10.1
26-
flake8==6.1.0
25+
dev = black==23.12.1
26+
flake8==7.0.0
2727
pytest==7.4.3
2828
coverage==7.3.2
29-
mypy==1.6.1
30-
isort==5.12.0
29+
mypy==1.8.0
30+
isort==5.13.2
3131

3232
[options.entry_points]
3333
console_scripts =

0 commit comments

Comments
 (0)