Skip to content

Commit 982706b

Browse files
Disable man-db updates in GHA (#590)
1 parent 2be8078 commit 982706b

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.github/actions/setup-audio-linux/action.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ description: Setup audio under Linux
33
runs:
44
using: "composite"
55
steps:
6-
76
- name: Install jack
87
run: |
98
sudo apt-get update
109
sudo apt-get install --yes jackd2
1110
shell: bash
12-
1311
- name: Setup Jack
1412
run: |
1513
echo "Setting up Jack..."
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Tune GitHub Actions
2+
description: Tune GitHub Actions
3+
runs:
4+
using: "composite"
5+
steps:
6+
- name: Disable man-db update
7+
if: runner.os == 'Linux'
8+
run: |
9+
echo "set man-db/auto-update false" | sudo debconf-communicate
10+
sudo dpkg-reconfigure man-db
11+
shell: bash

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
timeout-minutes: 30
3131
steps:
3232
- uses: actions/checkout@v4
33+
- name: Tune GitHub Actions
34+
uses: ./.github/actions/tune-github-actions
3335
- name: Set up Python ${{ matrix.python-version }}
3436
uses: actions/setup-python@v5
3537
with:
@@ -127,6 +129,8 @@ jobs:
127129
timeout-minutes: 45
128130
steps:
129131
- uses: actions/checkout@v4
132+
- name: Tune GitHub Actions
133+
uses: ./.github/actions/tune-github-actions
130134
- name: Set up Python ${{ matrix.python-version }}
131135
uses: actions/setup-python@v5
132136
with:

0 commit comments

Comments
 (0)