From 7cc7e5d1f2b759887df0d34ac5ec79cd70fbb017 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Sun, 31 May 2026 03:26:05 +0200 Subject: [PATCH 1/2] 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 From 0cd6beaa76c548be476459332234d70fddeb4de2 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Tue, 2 Jun 2026 22:06:27 +0200 Subject: [PATCH 2/2] fix: install patch, unzip, bzip2, and zstd host dependencies --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 03fc1e5..3f443bc 100644 --- a/action.yml +++ b/action.yml @@ -44,6 +44,10 @@ runs: command -v flatpak >/dev/null 2>&1 || MISSING="$MISSING flatpak" command -v ostree >/dev/null 2>&1 || MISSING="$MISSING ostree" command -v flatpak-builder >/dev/null 2>&1 || MISSING="$MISSING flatpak-builder" + command -v patch >/dev/null 2>&1 || MISSING="$MISSING patch" + command -v unzip >/dev/null 2>&1 || MISSING="$MISSING unzip" + command -v bzip2 >/dev/null 2>&1 || MISSING="$MISSING bzip2" + command -v zstd >/dev/null 2>&1 || MISSING="$MISSING zstd" if [ -n "$MISSING" ]; then if command -v apt-get >/dev/null 2>&1; then export DEBIAN_FRONTEND=noninteractive