CI/CD & GitOps
GitHub Actions
3 articles from official documentation
Practitioner3 articles
cicdgithub actionsPractitioner
Securing Your GitHub Actions Workflows: Best Practices You Can't Ignore
Security in CI/CD pipelines is non-negotiable. Implementing the principle of least privilege and masking sensitive data are just the starting points. Let’s dive into how to secure your GitHub Actions workflows effectively.
- →Apply the principle of least privilege to limit access to secrets.
- →Mask sensitive data by using GitHub's secret management features.
5 min read·GitHub Docs
Read article cicdgithub actionsPractitioner
Creating Reusable Workflows in GitHub Actions: Best Practices
Tired of duplicating CI/CD configurations across multiple repositories? Reusable workflows in GitHub Actions can streamline your processes. Define inputs and secrets to pass data seamlessly between workflows.
- →Define inputs and secrets in your reusable workflow using the `inputs` and `secrets` keywords.
- →Use the `with` keyword to pass named inputs and the `secrets` keyword for sensitive data.
5 min read·GitHub Docs
Read article cicdgithub actionsPractitioner
Mastering Workflow Triggers in GitHub Actions
Unlock the full potential of GitHub Actions by understanding workflow triggers. These events dictate when your workflows run, and knowing how to configure them can streamline your CI/CD processes significantly.
- →Specify activity types using the `types` keyword to control workflow execution.
- →Ensure the workflow file exists on the default branch for triggers to work.
5 min read·GitHub Docs
Read article