Skip to content

Commit 1058435

Browse files
committed
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
1 parent ad23061 commit 1058435

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ on:
99
- master
1010
jobs:
1111
all:
12-
runs-on: ubuntu-latest
12+
# see https://github.com/actions/runner-images
13+
runs-on: ubuntu-22.04
1314
steps:
1415
- uses: actions/checkout@v4
1516
- name: install deps

0 commit comments

Comments
 (0)