File tree Expand file tree Collapse file tree 3 files changed +15
-16
lines changed
Expand file tree Collapse file tree 3 files changed +15
-16
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
1919 runs-on : ubuntu-latest
2020 steps :
2121 - name : Checkout code
22- uses : actions/checkout@v2
22+ uses : actions/checkout@v4
2323
24- - name : Set up Python 3.10
25- uses : actions/setup-python@v4
24+ - name : Set up Python 3.11
25+ uses : actions/setup-python@v5
2626 with :
27- python-version : ' 3.10 '
27+ python-version : ' 3.11 '
2828
2929 - name : Install dependencies
3030 run : |
3838 touch build/sphinx/html/.nojekyll
3939
4040 - name : Upload artifact
41- uses : actions/upload-pages-artifact@v1
41+ uses : actions/upload-pages-artifact@v3
4242 with :
4343 path : build/sphinx/html
4444
5252 steps :
5353 - name : Deploy to GitHub Pages
5454 id : deployment
55- uses : actions/deploy-pages@v1
55+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
1818
1919 steps :
2020 - name : Checkout code
21- uses : actions/checkout@v2
21+ uses : actions/checkout@v4
2222
2323 - name : Set up Python 3.10
24- uses : actions/setup-python@v4
24+ uses : actions/setup-python@v5
2525 with :
2626 python-version : " 3.10"
2727
4949 sha512sum dist/*
5050 tar -ztf dist/*.tar.gz | sort
5151
52- - uses : actions/upload-artifact@v3
52+ - uses : actions/upload-artifact@v4
5353 with :
5454 name : results
5555 path : dist/*
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ jobs:
2626
2727 steps :
2828 - name : Checkout code
29- uses : actions/checkout@v3
29+ uses : actions/checkout@v4
3030
3131 - name : Set up Python ${{ matrix.python-version }}
32- uses : actions/setup-python@v4
32+ uses : actions/setup-python@v5
3333 with :
3434 python-version : ${{ matrix.python-version }}
3535 cache : ' pip'
@@ -69,10 +69,10 @@ jobs:
6969 runs-on : ubuntu-latest
7070 steps :
7171 - name : Checkout code
72- uses : actions/checkout@v3
72+ uses : actions/checkout@v4
7373
7474 - name : Set up Python 3
75- uses : actions/setup-python@v4
75+ uses : actions/setup-python@v5
7676 with :
7777 python-version : ' 3.x'
7878
@@ -82,12 +82,11 @@ jobs:
8282 pip install . pylint
8383
8484 - name : Run linting tools
85- run : |
86- pylint --exit-zero src/pkgdev
85+ run : pylint --exit-zero src/pkgdev
8786
8887 format :
8988 runs-on : ubuntu-latest
9089 steps :
9190 - name : Checkout code
92- uses : actions/checkout@v3
91+ uses : actions/checkout@v4
9392 - uses : psf/black@stable
You can’t perform that action at this time.
0 commit comments