1818 - uses : actions/setup-python@v5
1919 with :
2020 python-version : 3.x
21- - uses : pre-commit/action@v3.0.0
21+ - uses : pre-commit/action@v3.0.1
2222
2323 # Make sure commit messages follow the conventional commits convention:
2424 # https://www.conventionalcommits.org
2929 - uses : actions/checkout@v4
3030 with :
3131 fetch-depth : 0
32- - uses : wagoid/commitlint-github-action@v5.4.5
32+ - uses : wagoid/commitlint-github-action@v6.2.1
3333
3434 test :
3535 strategy :
@@ -52,15 +52,15 @@ jobs:
5252 uses : actions/setup-python@v5
5353 with :
5454 python-version : ${{ matrix.python-version }}
55- - uses : snok/install-poetry@v1.3.4
55+ - uses : snok/install-poetry@v1.4.1
5656 - name : Install Dependencies
5757 run : poetry install
5858 shell : bash
5959 - name : Test with Pytest
6060 run : poetry run pytest --cov-report=xml
6161 shell : bash
6262 - name : Upload coverage to Codecov
63- uses : codecov/codecov-action@v3
63+ uses : codecov/codecov-action@v5
6464 with :
6565 token : ${{ secrets.CODECOV_TOKEN }}
6666
@@ -85,14 +85,14 @@ jobs:
8585
8686 # Do a dry run of PSR
8787 - name : Test release
88- uses : python-semantic-release/python-semantic-release@v8.7.2
88+ uses : python-semantic-release/python-semantic-release@v9.20.0
8989 if : github.ref_name != 'main'
9090 with :
9191 root_options : --noop
9292
9393 # On main branch: actual PSR + upload to PyPI & GitHub
9494 - name : Release
95- uses : python-semantic-release/python-semantic-release@v8.7.2
95+ uses : python-semantic-release/python-semantic-release@v9.20.0
9696 id : release
9797 if : github.ref_name == 'main'
9898 with :
0 commit comments