2929 - run : echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
3030 - run : echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
3131 - name : Check out repository code
32- uses : actions/checkout@v4
32+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3333 - run : echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
3434 - run : echo "🖥️ The workflow is now ready to test your code on the runner."
3535 - name : Helm uninstall
@@ -61,17 +61,16 @@ jobs:
6161 run : |
6262 cd ${{ github.workspace }}
6363 kubectl config use-context minikube
64- sudo docker build --build-arg INSTALL_OPTIONAL_DEP=default -t localhost:5000/git-act-router -f docker/Dockerfile .
65- sudo docker push localhost:5000/git-act-router
6664 sudo sysctl fs.protected_regular=0
67- minikube image load localhost:5000/git-act-router
65+ eval "$(minikube docker-env)"
66+ docker build --build-arg INSTALL_OPTIONAL_DEP=default -t git-act-router:ci -f docker/Dockerfile .
6867 helm install vllm ./helm -f .github/values-05-secure-vllm.yaml
6968 - name : Validate the installation and send query to the stack
7069 run : |
7170 bash .github/port-forward.sh curl-05-secure-vllm
7271 timeout-minutes : 3
7372 - name : Archive functionality results
74- uses : actions/upload-artifact@v4
73+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
7574 if : always()
7675 with :
7776 name : output-05-secure-vllm
@@ -120,7 +119,7 @@ jobs:
120119 bash .github/port-forward.sh curl-02-two-pods
121120 timeout-minutes : 3
122121 - name : Archive functionality results
123- uses : actions/upload-artifact@v4
122+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
124123 if : always()
125124 with :
126125 name : output-02-two-pods
@@ -167,7 +166,7 @@ jobs:
167166 bash .github/port-forward.sh curl-04-multiple-models
168167 timeout-minutes : 5
169168 - name : Archive functionality results
170- uses : actions/upload-artifact@v4
169+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
171170 if : always()
172171 with :
173172 name : output-04-multiple-models
@@ -187,7 +186,7 @@ jobs:
187186 - run : echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
188187 - run : echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
189188 - name : Check out repository code
190- uses : actions/checkout@v4
189+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
191190 - run : echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
192191 - run : echo "🖥️ The workflow is now ready to test your code on the runner."
193192 - name : Helm uninstall
@@ -219,17 +218,16 @@ jobs:
219218 run : |
220219 cd ${{ github.workspace }}
221220 kubectl config use-context minikube
222- sudo docker build --build-arg INSTALL_OPTIONAL_DEP=default -t localhost:5000/git-act-router -f docker/Dockerfile .
223- sudo docker push localhost:5000/git-act-router
224221 sudo sysctl fs.protected_regular=0
225- minikube image load localhost:5000/git-act-router
222+ eval "$(minikube docker-env)"
223+ docker build --build-arg INSTALL_OPTIONAL_DEP=default -t git-act-router:ci -f docker/Dockerfile .
226224 helm install vllm ./helm -f .github/values-11-monitoring.yaml
227225 - name : Validate the installation and send query to the stack
228226 run : |
229227 bash .github/port-forward.sh curl-06-monitoring
230228 timeout-minutes : 3
231229 - name : Archive functionality results
232- uses : actions/upload-artifact@v4
230+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
233231 if : always()
234232 with :
235233 name : curl-06-monitoring
0 commit comments