Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Bluish automates software development and deployment tasks, similar to GitHub Actions, but for local execution or within Docker. It allows you to define, organize, and execute workflows in your own environment without relying on external services.
make
-like experience via the blu
command for easy task execution (e.g., blu build
).Use pipx
(or pip
!):
pipx install bluish
Refer to the project wiki for more detailed documentation. Please note that the documentation is still in progress and may be incomplete or not fully reliable.
Define workflows in a YAML file (bluish.yml
). Each workflow contains steps executed in sequence. Example:
name: My Local Workflow
steps:
- name: Clone repository
uses: git/checkout
with:
repository: https://github.com/myuser/myproject.git
- name: Build Docker image
run: docker build -t myproject .
- name: Run tests
run: docker run --rm myproject pytest
- name: Cleanup
run: docker rmi myproject
To run a workflow:
blu <workflow>
The command looks for bluish.yml
in the current or .bluish/
directory.
Feature | GitHub Actions | Bluish |
---|---|---|
Execution Environment | Cloud | Local / Remote / Docker Containers |
Privacy | Data hosted on GitHub servers | No data exposure, or exposure that is tightly controlled |
Flexibility | Tied to GitHub's CI/CD model | Agnostic, adaptable to different CI/CD systems |
Internet Requirement | Yes | No |
Bluish is ideal for:
nektos/act runs GitHub Actions locally but is tied to GitHub's syntax. Bluish offers more flexibility and is not restricted by GitHub-specific rules, making it more versatile across different CI/CD systems.
Contributions are welcome! Open an issue or send a pull request. See the contribution guidelines for more details.
Licensed under the MIT License. See the LICENSE
file for details.
For questions or suggestions, open an issue in the repository or contact me on GitHub: luismedel.
FAQs
A CI/CD tool
We found that bluish demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.