File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
source/guides/github-actions-ci-cd-sample Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99
1010 steps :
11- - uses : actions/checkout@v4
11+ - uses : actions/checkout@v6
1212 with :
1313 persist-credentials : false
1414 - name : Set up Python
15- uses : actions/setup-python@v5
15+ uses : actions/setup-python@v6
1616 with :
1717 python-version : " 3.x"
1818 - name : Install pypa/build
2424 - name : Build a binary wheel and a source tarball
2525 run : python3 -m build
2626 - name : Store the distribution packages
27- uses : actions/upload-artifact@v4
27+ uses : actions/upload-artifact@v5
2828 with :
2929 name : python-package-distributions
3030 path : dist/
4444
4545 steps :
4646 - name : Download all the dists
47- uses : actions/download-artifact@v4
47+ uses : actions/download-artifact@v6
4848 with :
4949 name : python-package-distributions
5050 path : dist/
6666
6767 steps :
6868 - name : Download all the dists
69- uses : actions/download-artifact@v4
69+ uses : actions/download-artifact@v6
7070 with :
7171 name : python-package-distributions
7272 path : dist/
You can’t perform that action at this time.
0 commit comments