From 02d43956a560da8f0a9539524648d8b1e7df69a2 Mon Sep 17 00:00:00 2001 From: Aaron Feickert <66188213+AaronFeickert@users.noreply.github.com> Date: Tue, 5 Mar 2024 11:31:14 -0600 Subject: [PATCH] Update CI action versions --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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