ci: use pandoc/actions/setup instead of apt-get

apt-get install pandoc took ~27 minutes due to apt index refresh.
The prebuilt binary action completes in seconds.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Razvan Dimescu
2026-04-10 22:35:30 +03:00
parent 23ff3ce455
commit 4627cef8c9

View File

@@ -32,7 +32,7 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@v6
- name: Install pandoc - name: Install pandoc
run: sudo apt-get install -y pandoc uses: pandoc/actions/setup@v1
- name: Generate blog HTML - name: Generate blog HTML
run: make blog run: make blog
- name: Setup Pages - name: Setup Pages