-
-
Notifications
You must be signed in to change notification settings - Fork 127
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
Conversation
.github/workflows/release.yml
Outdated
@@ -37,6 +37,11 @@ jobs: | |||
GIT_COMMITTER_NAME: asyncapi-bot | |||
GIT_COMMITTER_EMAIL: info@asyncapi.io | |||
run: npm run release | |||
# Sleep for 10 seconds before using latest version in playground, because sometimes NPM needs additional few seconds to `save` package in registry | |||
- name: Sleep for 10 seconds | |||
uses: jakejarvis/wait-action@master |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please use something different, this action looks nifty but as you can see it is always fetched from master 😱 which is super unsecure. Unfortunately the user doesn't seem to provide regular professional releases
why not just sleep 30s && npm install @kyma-project/asyncapi-react@${{ steps.extractver.outputs.version }} -s
in the playground step?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you are right, I changed it to sleep 10 && ...
Kudos, SonarCloud Quality Gate passed! 0 Bugs |
🎉 This PR is included in version 0.14.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
Changes proposed in this pull request:
Related issue(s)
Resolves #168