如何找出 apt 存储库中软件包的版本?

如何找出 apt 存储库中软件包的版本?

我正在运行一个 GitHub Action,它没有看到 1.5 天前发布的最新 Google Chrome 版本 (96),而是声称 (95) 之前的版本是已经可用的最新版本。

我的问题是:我如何检查 apt 存储库(它似乎使用azure.archive.ubuntu.com)用来查看问题是否那里,看看那里列出了哪个版本的 google-chrome-stable?也就是说,我怀疑它在那里,但不知道如何检查。从那里开始我应该能够排除我的故障实际的问题(由于 Chrome 版本过时,我的端到端 selenium 测试失败)。

更多相关细节:

我的最近失败的构建显示此 Ubuntu 版本的操作:

Operating System
  Ubuntu
  20.04.3
  LTS
Virtual Environment
  Environment: ubuntu-20.04
  Version: 20211108.1
  Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20211108.1/images/linux/Ubuntu2004-README.md
  Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20211108.1

我尝试使用以下方法更新该容器中的 Chrome:

sudo apt-get update
sudo apt-get --only-upgrade install google-chrome-stable
google-chrome --version

不幸的是,答案是:

Hit:1 http://azure.archive.ubuntu.com/ubuntu focal InRelease
Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
Get:3 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [101 kB]
Get:4 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB]
Get:5 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB]
Hit:6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease
Get:7 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1344 kB]
Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [276 kB]
Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [14.5 kB]
Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [569 kB]
Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [81.6 kB]
Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [528 B]
Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [876 kB]
Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [190 kB]
Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [19.5 kB]
Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.5 kB]
Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [616 B]
Get:18 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [6588 B]
Get:19 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [111 kB]
Get:20 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [580 B]
Get:21 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [987 kB]
Get:22 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [183 kB]
Get:23 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [8880 B]
Get:24 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [526 kB]
Get:25 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [75.4 kB]
Get:26 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [528 B]
Get:27 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [653 kB]
Get:28 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [107 kB]
Get:29 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [12.9 kB]
Get:30 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [21.9 kB]
Get:31 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [540 B]
Fetched 6430 kB in 2s (2633 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
google-chrome-stable is already the newest version (95.0.4638.69-1).
0 upgraded, 0 newly installed, 0 to remove and 43 not upgraded.
Google Chrome 95.0.4638.69 

如何查找列出的 google-chrome-stable 版本http://azure.archive.ubuntu.com? 我如何浏览这些网络资源的结构?当你访问这些资源时,浏览器界面...不够直观。

请“教我如何钓鱼”:这是怎么回事?我在哪里可以阅读apt-get update使用在线资源的结构?(我知道有另一个关于如何更新 Google Chrome 的问题这对我也应该有用,但在这个问题上,我只是想学习如何解释来源。)

相关内容