Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/upload-artifact from 3 to 4 #1856

Merged
merged 1 commit into from
Dec 15, 2023
Merged
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@v3
- uses: actions/upload-artifact@v4
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@v3
- uses: actions/upload-artifact@v4
with:
name: pull-request-number
path: PR_NUMBER
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
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@v3
uses: actions/upload-artifact@v4
with:
name: e2e-artifacts
path: /tmp/tests

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