ci: add apt-get update before install in test-release and weekly-patch-test workflows
This commit is contained in:
parent
bd1589cda9
commit
dc9623fa48
4
.github/workflows/test-release.yml
vendored
4
.github/workflows/test-release.yml
vendored
@ -18,7 +18,9 @@ jobs:
|
||||
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||
|
||||
- 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
|
||||
id: version
|
||||
|
||||
4
.github/workflows/weekly-patch-test.yml
vendored
4
.github/workflows/weekly-patch-test.yml
vendored
@ -47,7 +47,9 @@ jobs:
|
||||
|
||||
# ── Build (mirrors test-release.yml) ───────────────────────────────────
|
||||
- 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
|
||||
run: |
|
||||
|
||||
Loading…
Reference in New Issue
Block a user