1313 # https://github.community/t/github-actions-does-not-respect-skip-ci/17325/8
1414 if : " ! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717 - name : Set up Python
18- uses : actions/setup-python@v4
18+ uses : actions/setup-python@v5
1919 with :
2020 python-version : " 3.x"
2121 - name : Install dependencies
@@ -27,15 +27,15 @@ jobs:
2727 if : " ! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
2828 strategy :
2929 matrix :
30- python-version : [3.8, 3.9 , "3.10 ", "3.11 ", "pypy-3.9"]
30+ python-version : [3.8, "3.10" , "3.11 ", "3.13 ", "pypy-3.9"]
3131 platform : [ubuntu-latest, windows-latest]
3232 exclude :
3333 - platform : windows-latest
3434 python-version : " pypy-3.9"
3535 steps :
36- - uses : actions/checkout@v3
36+ - uses : actions/checkout@v4
3737 - name : Set up Python ${{ matrix.python-version }}
38- uses : actions/setup-python@v4
38+ uses : actions/setup-python@v5
3939 with :
4040 python-version : ${{ matrix.python-version }}
4141 - name : Install dependencies
@@ -62,12 +62,12 @@ jobs:
6262 - test
6363 runs-on : ubuntu-latest
6464 steps :
65- - uses : actions/checkout@v3
65+ - uses : actions/checkout@v4
6666 with :
6767 # setuptools_scm requires the git clone to not be 'shallow'
6868 fetch-depth : 0
6969 - name : Set up Python
70- uses : actions/setup-python@v4
70+ uses : actions/setup-python@v5
7171 with :
7272 python-version : " 3.x"
7373 - name : Install dependencies
0 commit comments