Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/image-build-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
docker rm -f pluginRegistry
cp root-dir/v3/plugins/index.json root-dir/index.json
tar zcvf content.tgz -C root-dir .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: plugin-registry-content
path: content.tgz
Expand All @@ -64,11 +64,11 @@ jobs:
run: |
echo "${{ github.event.number }}" > PR_NUMBER
echo "${{ github.event.pull_request.head.sha }}" > PR_SHA
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pull-request-number
path: PR_NUMBER
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pull-request-sha
path: PR_SHA
4 changes: 2 additions & 2 deletions .github/workflows/smoke-test-pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ jobs:

- name: Store e2e artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: e2e-artifacts
path: /tmp/tests

- name: Store k8s logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: k8s-logs
path: /tmp/devworkspace-happy-path-artifacts/admin-che-info
Loading