diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1381b31..693a192 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,14 +9,14 @@ jobs: steps: - name: Prepare repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build document - uses: xu-cheng/latex-action@v2 + uses: xu-cheng/latex-action@v3 with: root_file: main.tex post_compile: "if [[ $(grep -ic overfull *.log) != 0 ]]; then echo 'Margin overrun detected; failing...' && exit 1; fi" - name: Store PDF - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: Output PDF path: ./*.pdf diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d6be250..4b4f38b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,13 +8,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - name: Prepare repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Configure Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies