Skip to content

Commit 0e1c248

Browse files
[CI][GitHub-Actions] Upgrade actions/upload-artifact to v4 (#2373)
1 parent d6fbdd5 commit 0e1c248

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/actions/compatibility/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
uses: docker-practice/actions-setup-docker@master
3838

3939
- name: Download Artifact Operator
40-
uses: actions/download-artifact@v2
40+
uses: actions/download-artifact@v4
4141
with:
4242
name: operator_img
4343
path: /tmp

.github/workflows/e2e-tests-reusable-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
kubectl logs -n ray-system --tail -1 -l app.kubernetes.io/name=kuberay | tee ${KUBERAY_TEST_OUTPUT_DIR}/kuberay-operator.log
8484
8585
- name: Upload logs
86-
uses: actions/upload-artifact@v3
86+
uses: actions/upload-artifact@v4
8787
if: (!inputs.plugin-test) && always() && steps.deploy.outcome == 'success'
8888
with:
8989
name: logs

.github/workflows/test-job.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
docker save -o /tmp/apiserver.tar kuberay/apiserver:${{ steps.vars.outputs.sha_short }}
7777
7878
- name: Upload Artifact Apiserver
79-
uses: actions/upload-artifact@v2
79+
uses: actions/upload-artifact@v4
8080
with:
8181
name: apiserver_img
8282
path: /tmp/apiserver.tar
@@ -150,7 +150,7 @@ jobs:
150150
working-directory: ${{env.working-directory}}
151151

152152
- name: Upload security proxy artifact
153-
uses: actions/upload-artifact@v2
153+
uses: actions/upload-artifact@v4
154154
with:
155155
name: security-proxy_img
156156
path: /tmp/security-proxy.tar
@@ -228,7 +228,7 @@ jobs:
228228
working-directory: ${{env.working-directory}}
229229

230230
- name: Upload Artifact Operator
231-
uses: actions/upload-artifact@v2
231+
uses: actions/upload-artifact@v4
232232
with:
233233
name: operator_img
234234
path: /tmp/operator.tar

0 commit comments

Comments
 (0)