diff options
author | Aaron LI <aly@aaronly.me> | 2025-08-03 09:48:31 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2025-08-03 09:48:31 +0800 |
commit | 1058435dab8b1013814cee86e645b34787e54deb (patch) | |
tree | 9a8e32adf98c08be9a170bd3af66793411b6ab03 | |
parent | ad23061583f3daab2737f5b3a5d4b30b5cd71092 (diff) | |
download | resume-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
-rw-r--r-- | .github/workflows/main.yml | 3 |
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 |