From 4c5155a5d586cc9d8f7b398f55bb9c54a252d19f Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Mon, 22 Dec 2025 11:37:21 -0500 Subject: [PATCH] update(archlinux) > error: gcc-libs: signature from "Frederik Schwan " is unknown trust > :: File /var/cache/pacman/pkg/gcc-libs-15.2.1+r301+gf24307422d1d-1-x86_64.pkg.tar.zst is corrupted (invalid or corrupted package (PGP signature)). > Do you want to delete it? [Y/n] https://bbs.archlinux.org/viewtopic.php?id=304755 --- .github/workflows/pkg-platform.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/pkg-platform.yml b/.github/workflows/pkg-platform.yml index cc2be385d2..fcb17d3c56 100644 --- a/.github/workflows/pkg-platform.yml +++ b/.github/workflows/pkg-platform.yml @@ -115,6 +115,14 @@ jobs: PKGX_PANTRY_PATH: ${{ github.workspace }} steps: - uses: actions/checkout@v4 + # need to update archlinux-keyring on run + # https://bbs.archlinux.org/viewtopic.php?id=304755 + - run: | + if command -v pacman; then + pacman-key --init + pacman-key --populate archlinux + pacman -Sy --noconfirm archlinux-keyring + fi - uses: ./.github/actions/setup - uses: pkgxdev/setup@v2 with: