Skip to content

Commit

Permalink
chore(deps): bump actions/upload-artifact from 3 to 4 (#1856)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 15, 2023
1 parent 214c9ea commit d95b59f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit d95b59f

Please sign in to comment.