Skip to content

Fix CI: add apt-get update before package install in build_docs workflow#23

Merged
reverendbedford merged 2 commits into
mainfrom
copilot/fix-failing-github-actions-job
Jun 10, 2026
Merged

Fix CI: add apt-get update before package install in build_docs workflow#23
reverendbedford merged 2 commits into
mainfrom
copilot/fix-failing-github-actions-job

Conversation

Copilot AI commented Jun 10, 2026

Copy link
Copy Markdown
Contributor

The build job was failing because the stale apt package cache referenced a version of openjdk-21-jre (pulled in as a transitive dependency of texlive-latex-extra) that was no longer available on the mirror, resulting in a 404.

Changes

  • .github/workflows/build_docs.yml: Prepend apt-get update to the install step and add -y for non-interactive CI use
# before
- run: sudo apt install pandoc texlive-latex-recommended texlive-latex-extra dvipng

# after
- run: sudo apt-get update && sudo apt-get install -y pandoc texlive-latex-recommended texlive-latex-extra dvipng

Copilot AI changed the title [WIP] Fix failing GitHub Actions job 'build' Fix CI: add apt-get update before package install in build_docs workflow Jun 10, 2026
Copilot AI requested a review from reverendbedford June 10, 2026 05:15
@github-actions

Copy link
Copy Markdown
PR Preview Action v1.8.1

QR code for preview link

🚀 View preview at
https://applied-material-modeling.github.io/pyzag/pr-preview/pr-23/

Built to branch gh-pages at 2026-06-10 05:19 UTC.
Preview will be ready when the GitHub Pages deployment is complete.

@reverendbedford reverendbedford marked this pull request as ready for review June 10, 2026 05:21
@reverendbedford reverendbedford merged commit f88afa2 into main Jun 10, 2026
7 checks passed
@reverendbedford reverendbedford deleted the copilot/fix-failing-github-actions-job branch June 10, 2026 05:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants