GitHub Action to install and cache APT packages.
- uses: gerlero/apt-install@v1
with:
packages: curlRequired. A package name or a whitespace-separated list of package names to install.
Whether to cache installed packages between runs. Default: true.
Whether to install optional packages recommended by the packages to install. Default: true.
Whether to install optional packages suggested by the packages to install. Default: false.
Whether to update the package list (i.e., run apt-get update) before installing the packages. Default: true.
Whether to upgrade the listed packages if they are already installed and newer versions are available. Default: true.
gerlero/add-apt-repository: GitHub Action to add a new APT repository for installing packages.gerlero/brew-install: GitHub Action to install and cache Homebrew packages.