@@ -25,13 +25,13 @@ jobs:
2525 - uses : actions/checkout@v4
2626 with :
2727 fetch-depth : 0
28- - uses : actions/setup-python@v4
28+ - uses : actions/setup-python@v5
2929 with :
3030 python-version : 3
3131 - run : pip install --upgrade build twine
3232 - run : python -m build
3333 - run : twine check dist/*
34- - uses : actions/upload-artifact@v3
34+ - uses : actions/upload-artifact@v4
3535 with :
3636 name : dist
3737 path : dist/
4040 git clean -fxd
4141 mkdir archive
4242 git archive -o archive/pydra.zip HEAD
43- - uses : actions/upload-artifact@v3
43+ - uses : actions/upload-artifact@v4
4444 with :
4545 name : archive
4646 path : archive/
5050 strategy :
5151 matrix :
5252 os : [macos-latest, ubuntu-latest, windows-latest]
53- python-version : ['3.8', '3.9', '3.10', '3.11']
53+ python-version : ['3.8', '3.9', '3.10', '3.11', '3.12' ]
5454 install : ['wheel']
5555 include :
5656 - os : ' ubuntu-latest'
@@ -68,13 +68,13 @@ jobs:
6868
6969 steps :
7070 - name : Fetch sdist/wheel
71- uses : actions/download-artifact@v3
71+ uses : actions/download-artifact@v4
7272 if : matrix.install == 'sdist' || matrix.install == 'wheel'
7373 with :
7474 name : dist
7575 path : dist/
7676 - name : Fetch git archive
77- uses : actions/download-artifact@v3
77+ uses : actions/download-artifact@v4
7878 if : matrix.install == 'archive'
7979 with :
8080 name : archive
8484 if : matrix.install == 'repo'
8585
8686 - name : Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
87- uses : actions/setup-python@v4
87+ uses : actions/setup-python@v5
8888 with :
8989 python-version : ${{ matrix.python-version }}
9090 - name : Update pip
0 commit comments