aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2025-08-03 09:48:31 +0800
committerAaron LI <aly@aaronly.me>2025-08-03 09:48:31 +0800
commit1058435dab8b1013814cee86e645b34787e54deb (patch)
tree9a8e32adf98c08be9a170bd3af66793411b6ab03 /.github/workflows
parentad23061583f3daab2737f5b3a5d4b30b5cd71092 (diff)
downloadresume-1058435dab8b1013814cee86e645b34787e54deb.tar.bz2
github: Fix main workflow by using 'ubuntu-22.04' image
The 'ubuntu-latest' image was Ubuntu 22.04 but has been Ubuntu 24.04, and this caused the 'fontawesome5.tar.xz' package failing to install: ``` TeXLive::TLUtils::check_file_and_remove: neither checksum nor checksize available for /tmp/sZbRLtVCfX/7Rk9CYBNzM/fontawesome5.tar.xz, cannot check integrityUndefined subroutine &TeXLive::TLPDB::_post_install_package called at /usr/share/texlive/tlpkg/TeXLive/TLPDB.pm line 1665, <TMP> line 54. ``` Fix it by changing 'ubuntu-latest' to 'ubuntu-22.04'. Issue: #23
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index afbe1fb..d099871 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -9,7 +9,8 @@ on:
- master
jobs:
all:
- runs-on: ubuntu-latest
+ # see https://github.com/actions/runner-images
+ runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: install deps