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

fix: bump dependencies to resolve security issues #169

Merged
merged 3 commits into from
Oct 13, 2020
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
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
run: echo "::set-output name=version::$(npm run get-lib-version --silent)"
- name: Use latest version in the Playground #this will update package.json and a lock file for the playground that will also be pushed to PR with next step
if: steps.initversion.outputs.version != steps.extractver.outputs.version
run: npm install @kyma-project/asyncapi-react@${{ steps.extractver.outputs.version }} -s
# Sleep for 10 seconds before using latest version in playground, because sometimes NPM needs additional few seconds to `save` package in registry
run: sleep 10 && npm install @kyma-project/asyncapi-react@${{ steps.extractver.outputs.version }} -s
working-directory: ./playground
- name: Create Pull Request with updated package files
if: steps.initversion.outputs.version != steps.extractver.outputs.version
Expand Down
Loading