ci: add apt-get update before install in test-release and weekly-patch-test workflows

This commit is contained in:
copilot-swe-agent[bot] 2026-07-05 07:34:52 +00:00 committed by GitHub
parent bd1589cda9
commit dc9623fa48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -18,7 +18,9 @@ jobs:
ref: ${{ github.event.pull_request.head.sha || github.sha }} ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Install build deps - name: Install build deps
run: sudo apt-get install -y devscripts debhelper build-essential run: |
sudo apt-get update -qq
sudo apt-get install -y devscripts debhelper build-essential
- name: Compute build version - name: Compute build version
id: version id: version

View File

@ -47,7 +47,9 @@ jobs:
# ── Build (mirrors test-release.yml) ─────────────────────────────────── # ── Build (mirrors test-release.yml) ───────────────────────────────────
- name: Install build deps - name: Install build deps
run: sudo apt-get install -y devscripts debhelper build-essential run: |
sudo apt-get update -qq
sudo apt-get install -y devscripts debhelper build-essential
- name: Inject version into Config.pm - name: Inject version into Config.pm
run: | run: |