1010 check :
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v2
13+ - uses : actions/checkout@v6
1414 - name : Set up Python 3.11
15- uses : actions/setup-python@v1
15+ uses : actions/setup-python@v6
1616 with :
1717 python-version : " 3.11"
1818 - name : Install dependencies
@@ -26,12 +26,12 @@ jobs:
2626 runs-on : ubuntu-latest
2727 strategy :
2828 matrix :
29- python-version : ["3.8 ", "3.9 ", "3.10 ", "3.11 ", "pypy-3.8 ", "pypy-3.9", "pypy-3.10 "]
29+ python-version : ["3.10 ", "3.11 ", "3.12 ", "3.13 ", "3.14 ", "pypy-3.11 "]
3030 fail-fast : false
3131 steps :
32- - uses : actions/checkout@v2
32+ - uses : actions/checkout@v6
3333 - name : Set up Python ${{ matrix.python-version }}
34- uses : actions/setup-python@v2
34+ uses : actions/setup-python@v6
3535 with :
3636 python-version : ${{ matrix.python-version }}
3737 - name : Install dependencies
@@ -47,12 +47,12 @@ jobs:
4747 runs-on : ubuntu-latest
4848 strategy :
4949 matrix :
50- python-version : ["3.8 ", "3.9 ", "3.10 ", "3.11 "] # FIXME: these segfault PyPy
50+ python-version : ["3.10 ", "3.11 ", "3.12 ", "3.13", "3.14 "] # FIXME: these segfault PyPy
5151 fail-fast : false
5252 steps :
53- - uses : actions/checkout@v2
53+ - uses : actions/checkout@v6
5454 - name : Set up Python ${{ matrix.python-version }}
55- uses : actions/setup-python@v2
55+ uses : actions/setup-python@v6
5656 with :
5757 python-version : ${{ matrix.python-version }}
5858 - name : Install dependencies
@@ -67,11 +67,11 @@ jobs:
6767 needs : [check, test, test-slow]
6868 if : github.repository == 'python-jsonschema/hypothesis-jsonschema' && github.ref == 'refs/heads/master'
6969 steps :
70- - uses : actions/checkout@v2
71- - name : Set up Python 3.8
72- uses : actions/setup-python@v1
70+ - uses : actions/checkout@v6
71+ - name : Set up Python 3.12
72+ uses : actions/setup-python@v6
7373 with :
74- python-version : 3.8
74+ python-version : " 3.12 "
7575 - name : Install tools
7676 run : python -m pip install --upgrade pip setuptools wheel twine
7777 - name : Upload new release
0 commit comments