Skip to content

Commit 60bebeb

Browse files
committed
use v3
1 parent 7faca3f commit 60bebeb

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/latexmk.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
steps:
1616
# Step 1: Checkout the repository
1717
- name: Checkout repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
# Step 2: Set up TeX Live (LaTeX environment)
2121
- name: Set up TeX Live
22-
uses: dante-ev/action-texlive@v1
23-
with:
24-
texlive_version: '2020'
22+
run: |
23+
sudo apt-get update
24+
sudo apt-get install -y texlive texlive-latex-extra texlive-fonts-recommended texlive-xetex
2525
2626
# Step 3: Install make (required to run your Makefile)
2727
- name: Install make
@@ -33,7 +33,7 @@ jobs:
3333

3434
# Step 5: Upload the generated PDF as an artifact
3535
- name: Upload PDF artifact
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@v3
3737
with:
3838
name: lammps-tutorials-pdf
3939
path: lammps-tutorials.pdf

0 commit comments

Comments
 (0)