@@ -32,15 +32,15 @@ Basic:
3232
3333``` yml
3434steps :
35- - uses : actions/checkout@v4
35+ - uses : actions/checkout@v6
3636 - uses : marian-code/python-lint-annotate@v4
3737` ` `
3838
3939Options:
4040
4141` ` ` yml
4242steps :
43- - uses : actions/checkout@v4
43+ - uses : actions/checkout@v6
4444 - uses : marian-code/python-lint-annotate@v4
4545 with :
4646 python-root-list : " src/ tests/*" # accepts wildcards
@@ -56,17 +56,17 @@ steps:
5656
5757## Details
5858
59- Uses ` actions/setup-python@v5 `. Only python `3.8` - `3.12` versions are tested.
59+ Uses ` actions/setup-python@v6 `. Only python `3.8` - `3.12` versions are tested.
6060Python `3.x` versions prior to `3.8` are not tested since they are EOL now.
6161Any python `2.x` versions are unsupported! You can lint on Linux, Windows and MacOS.
6262
6363The linter versions are defined in [requirements.txt](requirements.txt).
6464
6565# # IMPORTANT - test environment
6666
67- The python version is set by `actions/setup-python@v5 ` using composite actions. This
67+ The python version is set by `actions/setup-python@v6 ` using composite actions. This
6868means that the the action will change python you might have previously set with
69- ` actions/setup-python@v5 ` . There are two ways to circumvent this.
69+ ` actions/setup-python@v6 ` . There are two ways to circumvent this.
7070
7171- Keep the lintnig action separated from others
7272- Use it at the and of your workflow when the change in python version will not
8484 name: Lint Python
8585 runs-on: ubuntu-latest
8686 steps:
87- - uses: actions/checkout@v4
88- - uses: actions/setup-python@v5
87+ - uses: actions/checkout@v6
88+ - uses: actions/setup-python@v6
8989 with:
9090 python-version: 3.9
9191 - run: |
0 commit comments