From 8b29ba8ebabf6238629f9246bd1b5547b24a3894 Mon Sep 17 00:00:00 2001
From: Gavin Didrichsen <gavin.didrichsen@gmail.com>
Date: Mon, 7 Apr 2025 12:38:36 +0100
Subject: [PATCH] Fix expired GPG key

Signed-off-by: Gavin Didrichsen <gavin.didrichsen@gmail.com>
---
 .ci/install_pdk.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.ci/install_pdk.sh b/.ci/install_pdk.sh
index 1cc343c..9b45a2e 100755
--- a/.ci/install_pdk.sh
+++ b/.ci/install_pdk.sh
@@ -12,6 +12,9 @@ setup_apt() {
 
     wget "${deb_url}"
     sudo dpkg -i "${deb_file}"
+    
+    # Add the non-expiring key from the future endpoint
+    curl -fsSL https://apt.puppetlabs.com/DEB-GPG-KEY-future | sudo apt-key add -
 }
 
 main() {
-- 
GitLab