@@ -12,10 +12,10 @@ jobs:
1212
1313 steps :
1414 - name : Checkout
15- uses : actions/checkout@v2
15+ uses : actions/checkout@v3
1616
1717 - name : Set up Python
18- uses : actions/setup-python@v2
18+ uses : actions/setup-python@v3
1919 with :
2020 python-version : 3.9
2121
@@ -45,10 +45,10 @@ jobs:
4545
4646 steps :
4747 - name : Checkout
48- uses : actions/checkout@v2
48+ uses : actions/checkout@v3
4949
5050 - name : Set up Python ${{ matrix.python-version }}
51- uses : actions/setup-python@v2
51+ uses : actions/setup-python@v4
5252 with :
5353 python-version : ${{ matrix.python-version }}
5454
@@ -71,22 +71,22 @@ jobs:
7171 runtime-param : [3.7, 3.8, 3.9]
7272 steps :
7373 - name : Checkout
74- uses : actions/checkout@v2
74+ uses : actions/checkout@v3
7575
7676 - name : Set up Node 14
77- uses : actions/setup-node@v1
77+ uses : actions/setup-node@v3
7878 with :
7979 node-version : 14
8080
8181 - name : Cache Node modules
8282 id : cache-node-modules
83- uses : actions/cache@v2
83+ uses : actions/cache@v3
8484 with :
8585 path : " **/node_modules"
8686 key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
8787
8888 - name : Set up Python
89- uses : actions/setup-python@v2
89+ uses : actions/setup-python@v4
9090 with :
9191 python-version : 3.9
9292
@@ -129,7 +129,7 @@ jobs:
129129 if : always() && (needs.integration-test.result == 'failure')
130130 steps :
131131 - name : Checkout
132- uses : actions/checkout@v2
132+ uses : actions/checkout@v3
133133 - name : Send a failure metric
134134 env :
135135 DD_API_KEY : ${{ secrets.DD_API_KEY }}
0 commit comments