При установке обновлений APT выдал ошибку об устаревании ключа, которым подписан репозитарий Gitlab:
Get:5 https://packages.gitlab.com/gitlab/gitlab-ce/debian trixie InRelease [16.9 kB] Err:5 https://packages.gitlab.com/gitlab/gitlab-ce/debian trixie InRelease Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on F6403F6544A38863DAA0B6E03F01618A51312F3F is bad: The primary key is not live because: Expired on 2026-02-27T20:15:41Z Fetched 239 kB in 1s (361 kB/s) 1 package can be upgraded. Run 'apt list --upgradable' to see it. gitlab-ce is already the newest version (18.7.5-ce.0). Selected version '18.7.5-ce.0' (gitlab-ce:1/trixie [amd64]) for 'gitlab-ce' Summary: Upgrading: 0, Installing: 0, Removing: 0, Not Upgrading: 0 Warning: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. OpenPGP signature verification failed: https://packages.gitlab.com/gitlab/gitlab-ce/debian trixie InRelease: Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on F6403F6544A38863DAA0B6E03F01618A51312F3F is bad: The primary key is not live because: Expired on 2026-02-27T20:15:41Z Warning: Failed to fetch https://packages.gitlab.com/gitlab/gitlab-ce/debian/dists/trixie/InRelease Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on F6403F6544A38863DAA0B6E03F01618A51312F3F is bad: The primary key is not live because: Expired on 2026-02-27T20:15:41Z Warning: Some index files failed to download. They have been ignored, or old ones used instead.
Чтобы обновить ключ достаточно следовать инструкции. У меня не установлен curl, поэтому немного изменил команду для дистрибутива Debian Trixie
$ sudo mkdir -p /etc/apt/keyrings $ sudo wget -O /etc/apt/keyrings/gitlab-keyring.asc https://packages.gitlab.com/gpg.key $ echo 'deb [signed-by=/etc/apt/keyrings/gitlab-keyring.asc] https://packages.gitlab.com/gitlab/gitlab-ce/debian/ trixie main' | sudo tee /etc/apt/sources.list.d/gitlab-ce.list $ sudo apt-get update

