Skip to content

Commit e370bea

Browse files
urban-adeiningerxu-cheng
authored andcommitted
fix: correct broken link in README.md
1 parent ee10d5a commit e370bea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Set up Git repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Compile basic LaTeX document
2222
uses: ./
2323
with:
@@ -161,7 +161,7 @@ jobs:
161161
file test/abc.pdf | grep -q ' PDF '
162162
file test/not_error.pdf | grep -q ' PDF '
163163
- name: Upload
164-
uses: actions/upload-artifact@v4
164+
uses: actions/upload-artifact@v5
165165
with:
166166
name: test-${{ matrix.os }}-${{ matrix.texlive_version }}
167167
path: test

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ jobs:
142142
runs-on: ubuntu-latest
143143
steps:
144144
- name: Set up Git repository
145-
uses: actions/checkout@v4
145+
uses: actions/checkout@v5
146146
- name: Compile LaTeX document
147147
uses: xu-cheng/latex-action@v4
148148
with:
149149
root_file: main.tex
150150
- name: Upload PDF file
151-
uses: actions/upload-artifact@v4
151+
uses: actions/upload-artifact@v5
152152
with:
153153
name: PDF
154154
path: main.pdf
@@ -174,7 +174,7 @@ By default, this action uses pdfLaTeX. If you want to use XeLaTeX or LuaLaTeX, y
174174
latexmk_use_lualatex: true
175175
```
176176

177-
Alternatively, you could create a `.latexmkrc` file. Refer to the [`latexmk` document](http://texdoc.net/texmf-dist/doc/support/latexmk/latexmk.pdf) for more information.
177+
Alternatively, you could create a `.latexmkrc` file. Refer to the [`latexmk` document](https://texdoc.org/serve/latexmk/0) for more information.
178178

179179
### How to enable `--shell-escape`?
180180

@@ -194,7 +194,7 @@ The compiled PDF file will be placed in the same directory as the LaTeX source f
194194
- **Upload as artifact** - Use [`@actions/upload-artifact`](https://github.com/actions/upload-artifact) to make the PDF available in the workflow tab:
195195

196196
```yaml
197-
- uses: actions/upload-artifact@v4
197+
- uses: actions/upload-artifact@v5
198198
with:
199199
name: PDF
200200
path: main.pdf

0 commit comments

Comments
 (0)