Skip to content

Commit 19140a1

Browse files
committed
chore: update GitHub Actions workflow to improve Pandoc installation and upgrade uv setup action
1 parent 4614ab4 commit 19140a1

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,20 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12-
12+
1313
steps:
14+
- name: Disable man-db to speed up pandoc install
15+
run: |
16+
echo 'set man-db/auto-update false' | sudo debconf-communicate >/dev/null
17+
sudo dpkg-reconfigure man-db
18+
19+
- name: Install Pandoc
20+
uses: pandoc/actions/setup@v1
21+
1422
- uses: actions/checkout@v4
1523

1624
- name: Install uv
17-
uses: astral-sh/setup-uv@v3
25+
uses: astral-sh/setup-uv@v6
1826
with:
1927
version: "latest"
2028

0 commit comments

Comments
 (0)