yegor256 / latexmk-action

GitHub action for building LaTeX documents via latexmk
MIT License
16 stars 3 forks source link

tlmgr: Local TeX Live (2022) is older than remote repository (2023) #11

Closed rcalimlim closed 1 year ago

rcalimlim commented 1 year ago

Hi there, I'm trying to use this GitHub Action in my project as such:

name: build_check

on:
  pull_request:
    branches: [main]

jobs:
  build_check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: sergeysova/jq-action@v2
      - uses: actions/setup-node@v3
        with:
          node-version: 18

      - name: latexmk-action
        uses: yegor256/latexmk-action@0.7.1
        with:
          cmd: latexmk
          path: src/cv/tex/
          opts: -pdf
          packages: acmart tikz

when run in Actions, it produces this error: tlmgr: Local TeX Live (2022) is older than remote repository (2023)

Among the results when searching that error is https://tex.stackexchange.com/questions/540429/tlmgr-in-ubuntu-20-04-local-tex-live-2019-is-older-than-remote-repository-2 which might be of help addressing this issue. Please let me know if you need more information to repro this issue.

Thanks

rcalimlim commented 1 year ago

Actually here's one of the failed runs: https://github.com/rcalimlim/rosscalimlim.me/actions/runs/4560881511/jobs/8046246321

yegor256 commented 1 year ago

@rcalimlim try version 0.8.0, should work fine

yegor256 commented 1 year ago

@rcalimlim I believe it's fixed