1212 name : Prepare for NPM
1313 runs-on : ubuntu-18.04
1414 steps :
15- - uses : actions/checkout@v2
16- - uses : actions/setup-node@v1
15+ - uses : actions/checkout@v3
16+ - uses : actions/setup-node@v3
1717 with :
1818 node-version : 12
1919 registry-url : https://registry.npmjs.org/
2828 npm pack
2929 - name : Upload NPM Artifacts
3030 id : upload_npm
31- uses : actions/upload-artifact@v1
31+ uses : actions/upload-artifact@v3
3232 with :
3333 name : package-npm
3434 path : cfn-rpdk-${{ env.VERSION }}.tgz
@@ -40,17 +40,17 @@ jobs:
4040 matrix :
4141 python : [3.6]
4242 steps :
43- - uses : actions/checkout@v2
43+ - uses : actions/checkout@v3
4444 - name : Setup Python ${{ matrix.python }}
45- uses : actions/setup-python@v1
45+ uses : actions/setup-python@v4
4646 with :
4747 python-version : ${{ matrix.python }}
4848 - name : Install Dependencies and Package Project
4949 id : installing
5050 run : |
5151 python -m pip install --upgrade pip setuptools wheel
5252 python3 setup.py sdist bdist_wheel
53- - uses : actions/upload-artifact@v1
53+ - uses : actions/upload-artifact@v3
5454 with :
5555 name : dist-py${{ matrix.python }}
5656 path : dist
@@ -60,13 +60,13 @@ jobs:
6060 needs : [delivery-nodejs, delivery-python]
6161 runs-on : ubuntu-18.04
6262 steps :
63- - uses : actions/checkout@v2
63+ - uses : actions/checkout@v3
6464 - name : Download NPM Artifacts
65- uses : actions/download-artifact@v1
65+ uses : actions/download-artifact@v3
6666 with :
6767 name : package-npm
6868 - name : Download Python 3.6 Artifacts
69- uses : actions/download-artifact@v1
69+ uses : actions/download-artifact@v3
7070 with :
7171 name : dist-py3.6
7272 path : dist/
0 commit comments