Wallabag 2.5 -> 2.6 upgrade problem (fixed)

What app is this about, and its version: 2.5.4~ynh12
What YunoHost version are you running: 12
What type of hardware are you using: Old laptop or computer

Describe your issue

Hello here,
I ran into the same problem than Wallabag 2.5 -> 2.6 upgrade problem - #2 by hook

Same log:

2026-03-28 22:30:34,159: DEBUG - Err:1 https://packages.sury.org/php bookworm/main amd64 php8.3-tidy amd64 8.3.30-1+0~20260118.75+debian12~1.gbpa91a19
2026-03-28 22:30:34,159: DEBUG -   404  Not Found [IP: 2a04:4e42:8e::820 443]
2026-03-28 22:30:34,167: WARNING - E: Failed to fetch https://packages.sury.org/php/pool/main/p/php8.3/php8.3-tidy_8.3.30-1%2b0%7e20260118.75%2bdebian12%7e1.gbpa91a19_amd64.deb  404  Not Found [IP: 2a04:4e42:8e::820 443]
2026-03-28 22:30:34,168: WARNING - E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

The root cause: signature problem with apt:

admin@yunohost-VM:~ $ sudo apt update
Hit:2 http://security.debian.org/debian-security bookworm-security InRelease                                                                            
Hit:3 http://deb.debian.org/debian bookworm InRelease                                                                                                   
Get:4 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]                                                           
Get:5 https://packages.sury.org/php bookworm InRelease [6,133 B]                                                                                                          
Get:6 https://dl.yarnpkg.com/debian stable InRelease                                                                 
Hit:1 https://forge.yunohost.org/debian bookworm InRelease                        
Err:5 https://packages.sury.org/php bookworm InRelease
  The following signatures were invalid: EXPKEYSIG B188E2B695BD4743 DEB.SURY.ORG Automatic Signing Key <deb@sury.org>
Err:6 https://dl.yarnpkg.com/debian stable InRelease
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 62D54FD4003F6525

The fix:
Thanks to @mobi0001

curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/yarn.gpg > /dev/null
curl -sS https://packages.sury.org/php/apt.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/extra_php_version.gpg > /dev/null

Share relevant logs or error messages

see description

3 Likes

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.