Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#2067)
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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Dec 15, 2023
1 parent d4caa16 commit 15eec4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/helm-chart-test.yml
Expand Up @@ -63,13 +63,13 @@ jobs:
run: make chart_cluster_cleanup
- name: Upload Helm chart package
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.CHART_FILE_NAME }}
path: ${{ env.CHART_PACKAGE_PATH }}
- name: Upload Helm chart template rendered
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: chart_template_rendered.yaml
path: ./tests/tests/output_deployment.yaml
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-video.yml
Expand Up @@ -37,17 +37,17 @@ jobs:
- name: Run Docker Compose to record video
run: USE_RANDOM_USER_ID=${USE_RANDOM_USER} VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make test_video
- name: Upload recorded Chrome video
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: chrome_video
path: ./tests/videos/chrome_video.mp4
- name: Upload recorded Edge video
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: edge_video
path: ./tests/videos/edge_video.mp4
- name: Upload recorded Firefox video
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: firefox_video
path: ./tests/videos/firefox_video.mp4

0 comments on commit 15eec4d

Please sign in to comment.