Recently we were discovering how to use GitHub Actions in our Flutter projects in order to maintain a CI/CD that would allow us to be automatically triggered by running one or more jobs. We were also finding out how to keep sensitive data locally on our computers. Today we will go a s…
Many of us have Flutter projects hosted in public repositories, for example, when we maintain a library or package published in the Pub dependency manager, or also because we work on an Open Source project we may need (from the very beginning) to avoid having sensitive data hosted in the…
First of all, to successfully follow this guide you should be familiar with the YAML serialisation language . (YAML files can be created with yaml and yml file extensions, both are the same in interpretation and syntax and I will use one or the other interchangeably). If you have a proj…
You may be wondering what Dependabot is. Basically we could say that GitHub has a security tool that periodically checks the dependencies of your application through Pull Requests, both from a security point of view, alerting you if any dependency in your repository is vulnerable or if th…