Skip to content

Commit

Permalink
chore(deps): bump actions/upload-artifact from 3 to 4
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]>
  • Loading branch information
dependabot[bot] authored and apupier committed Jan 19, 2024
1 parent 45d36f7 commit d36cbf1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ jobs:
run: yarn run test:it:with-prebuilt-vsix
if: ${{ matrix.os != 'ubuntu-latest' }}
- name: Archive vsix
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
name: 'vscode-kaoto-vsix'
path: '*.vsix'
- name: Store VS Code logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: vscode-logs-${{ matrix.os }}
path: test-resources/settings/logs
- name: Store VS Code UI Tests screenshots on failure
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: ui-test-screenshots-${{ matrix.os }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main-kaoto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,17 @@ jobs:
working-directory: vscode-kaoto
run: xvfb-run -a yarn run test:it:with-prebuilt-vsix
- name: Archive vsix
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: 'vscode-kaoto/*.vsix'
- name: Store VS Code logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: vscode-logs
path: vscode-kaoto/test-resources/settings/logs
- name: Store VS Code UI Tests screenshots on failure
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: ui-test-screenshots
Expand Down

0 comments on commit d36cbf1

Please sign in to comment.