@@ -59,27 +59,28 @@ runs:
5959 using : composite
6060 steps :
6161 - name : Set up Go
62- uses : actions/setup-go@v4
62+ uses : actions/setup-go@v5
6363 with :
6464 go-version : ${{ inputs.go-version }}
65+ cache-dependency-path : api/go.sum
6566
6667 - name : Download Turing API Docker tar archive
67- uses : actions/download-artifact@v2
68+ uses : actions/download-artifact@v4
6869 with :
6970 name : ${{ inputs.turing_api_tar_archive_name }}
7071
7172 - name : Download Turing Router Docker tar archive
72- uses : actions/download-artifact@v2
73+ uses : actions/download-artifact@v4
7374 with :
7475 name : ${{ inputs.turing_router_tar_archive_name }}
7576
7677 - name : Download Experiment Engine Plugin Docker tar archive
77- uses : actions/download-artifact@v2
78+ uses : actions/download-artifact@v4
7879 with :
7980 name : ${{ inputs.experiment_engine_plugin_archive_name }}
8081
8182 - name : Download Cluster Init Docker tar archive
82- uses : actions/download-artifact@v2
83+ uses : actions/download-artifact@v4
8384 with :
8485 name : ${{ inputs.cluster_init_tar_archive_name }}
8586
@@ -209,7 +210,7 @@ runs:
209210 kubectl apply -f infra/e2e/turing.mockserver.yaml
210211
211212 - name : Run action await k8 workloads
212- uses : jupyterhub/action-k8s-await-workloads@v1
213+ uses : jupyterhub/action-k8s-await-workloads@v3
213214 id : wait-for-deployment
214215 with :
215216 workloads : >-
@@ -240,11 +241,3 @@ runs:
240241 --request POST \
241242 --data @payload.json \
242243 http://turing-gateway.127.0.0.1.nip.io/api/v1/projects
243-
244- - name : Cache Test Dependencies
245- uses : actions/cache@v2
246- with :
247- path : api/.go/pkg/mod/
248- key : |
249- gomod-${{ hashFiles('api/go.mod') }}
250- restore-keys : gomod-
0 commit comments