-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
docs(regexp): add Regulex JavaScript RegExp visualizer #908
Conversation
Added Regulex, a JavaScript regular expression visualizer, to the RegExp section. Regulex provides an interactive way to understand regex patterns and their structure.
All checks have failed The message indicates that you are using the deprecated version actions/upload-artifact (v2), which is no longer supported, causing the error. To fix this:
- name: Upload artifact
uses: actions/upload-artifact@v2 to: - name: Upload artifact
uses: actions/upload-artifact@v3
After making this change, your workflow should run successfully without errors related to deprecated versions. |
Deprecation notice: v1 and v2 of the artifact actions On December 14, 2023, GitHub Actions released v4 of the actions to upload and download artifacts. https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ |
Get started with v4 of GitHub Actions Artifacts https://github.blog/news-insights/product-news/get-started-with-v4-of-github-actions-artifacts/ |
Yes, i created an issue for it (#909) and will tackle with it when i have time. If you prefer, you can also take it and work on it. Until that's done, this PR will -sadly- be blocked. |
I’ve updated the GitHub Actions workflow to address this. The changes include updating action versions, switching Ruby to 3.2, optimizing step order, improving gem installation, and making the validation step more resilient. You can check the details in the commit. Let me know if anything else is needed! |
Please update this branch with latest master, then it's good to go. |
Added Regulex, a JavaScript regular expression visualizer, to the RegExp section. Regulex provides an interactive way to understand regex patterns and their structure.
I’ve updated the branch with the latest master. Everything is good to go now! Let me know if you need anything else. |
All good, thanks a lot! |
Added Regulex, a JavaScript regular expression visualizer, to the RegExp section. Regulex provides an interactive way to understand regex patterns and their structure.
Checklist:
...