From 7cc7e5d1f2b759887df0d34ac5ec79cd70fbb017 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Sun, 31 May 2026 03:26:05 +0200 Subject: [PATCH] feat: drop gpg from installed dependencies --- README.md | 2 +- action.yml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8a0f0b9..4958ac2 100644 --- a/README.md +++ b/README.md @@ -22,4 +22,4 @@ Add the following step to your GitHub Actions workflow: | --- | --- | --- | --- | | `version` | Version of AetherPak CLI to install (e.g., `v0.2.0`, `latest`) | `latest` | No | | `repo` | GitHub repository containing the AetherPak CLI releases | `aetherpak/cli` | No | -| `install-dependencies` | Whether to automatically install missing system dependencies (`flatpak`, `ostree`, `gpg`, `flatpak-builder`) via `apt-get` on Linux | `true` | No | +| `install-dependencies` | Whether to automatically install missing system dependencies (`flatpak`, `ostree`, `flatpak-builder`) via `apt-get` on Linux | `true` | No | diff --git a/action.yml b/action.yml index 0f6b83f..03fc1e5 100644 --- a/action.yml +++ b/action.yml @@ -20,7 +20,7 @@ inputs: required: false default: "aetherpak/cli" install-dependencies: - description: "Trigger installation of missing host dependencies (flatpak, ostree, gpg, flatpak-builder)" + description: "Trigger installation of missing host dependencies (flatpak, ostree, flatpak-builder)" required: false default: "true" @@ -43,7 +43,6 @@ runs: MISSING="" command -v flatpak >/dev/null 2>&1 || MISSING="$MISSING flatpak" command -v ostree >/dev/null 2>&1 || MISSING="$MISSING ostree" - command -v gpg >/dev/null 2>&1 || MISSING="$MISSING gnupg" command -v flatpak-builder >/dev/null 2>&1 || MISSING="$MISSING flatpak-builder" if [ -n "$MISSING" ]; then if command -v apt-get >/dev/null 2>&1; then