Skip to content

Commit 8a9af9c

Browse files
committed
1 parent 8a63d07 commit 8a9af9c

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.19.0
1+
24.8.0

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ See [action.yml](https://github.com/WtfJoke/setup-tectonic/blob/main/action.yml)
2323

2424
```yml
2525
steps:
26-
- uses: wtfjoke/setup-tectonic@v3
26+
- uses: wtfjoke/setup-tectonic@v4
2727
- run: tectonic main.tex
2828
```
2929
3030
You can also download a specific version of Tectonic
3131
3232
```yml
3333
steps:
34-
- uses: wtfjoke/setup-tectonic@v3
34+
- uses: wtfjoke/setup-tectonic@v4
3535
with:
3636
tectonic-version: 0.14.1
3737
- run: tectonic main.tex
@@ -41,7 +41,7 @@ If you want to use biber, specify a biber version (for a full example see [below
4141
4242
```yml
4343
steps:
44-
- uses: wtfjoke/setup-tectonic@v3
44+
- uses: wtfjoke/setup-tectonic@v4
4545
with:
4646
biber-version: 2.17
4747
- run: biber --version
@@ -50,7 +50,7 @@ steps:
5050
## Upload pdf (using `actions/upload-artifact`)
5151

5252
```yml
53-
name: 'Build LaTex Document'
53+
name: "Build LaTex Document"
5454
on:
5555
push:
5656
jobs:
@@ -60,7 +60,7 @@ jobs:
6060
steps:
6161
- name: Checkout
6262
uses: actions/checkout@v4
63-
- uses: wtfjoke/setup-tectonic@v3
63+
- uses: wtfjoke/setup-tectonic@v4
6464
- name: Run Tectonic
6565
run: tectonic main.tex
6666
- name: Upload pdf
@@ -73,7 +73,7 @@ jobs:
7373
## With enabled cache (using `actions/cache`)
7474

7575
```yml
76-
name: 'Build LaTex Document'
76+
name: "Build LaTex Document"
7777
on:
7878
push:
7979
jobs:
@@ -90,7 +90,7 @@ jobs:
9090
key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }}
9191
restore-keys: |
9292
${{ runner.os }}-tectonic-
93-
- uses: wtfjoke/setup-tectonic@v3
93+
- uses: wtfjoke/setup-tectonic@v4
9494
- name: Run Tectonic
9595
run: tectonic main.tex
9696
- name: Upload pdf
@@ -103,7 +103,7 @@ jobs:
103103
## With biber
104104

105105
```yml
106-
name: 'Build LaTex Document with Biber'
106+
name: "Build LaTex Document with Biber"
107107
on:
108108
push:
109109
jobs:
@@ -120,9 +120,9 @@ jobs:
120120
key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }}
121121
restore-keys: |
122122
${{ runner.os }}-tectonic-
123-
- uses: wtfjoke/setup-tectonic@v3
123+
- uses: wtfjoke/setup-tectonic@v4
124124
with:
125-
biber-version: 'latest'
125+
biber-version: "latest"
126126
- name: Run Tectonic + Biber
127127
run: tectonic main.tex
128128
- name: Upload pdf
@@ -178,7 +178,7 @@ The official cache action [actions/cache](https://github.com/actions/cache) has
178178
For tectonic the cache directories (`path`) are as follows (see also [tectonic-typesetting/tectonic#159](https://github.com/tectonic-typesetting/tectonic/issues/159)):
179179

180180
| OS | Cache-Directory | Run-Command to export it as environment variable |
181-
| ------- | ----------------------------------------- | ------------------------------------------------------------------------- |
181+
| ------- | ----------------------------------------- | ------------------------------------------------------------------------- | ----------------------------------------------------------------- |
182182
| Linux | `~/.cache/Tectonic` | `echo TECTONIC_CACHE_PATH=~/.cache/Tectonic >> $GITHUB_ENV` |
183183
| Mac | `~/Library/Caches/Tectonic` | `echo TECTONIC_CACHE_PATH=~/Library/Caches/Tectonic >> $GITHUB_ENV` |
184184
| Windows | `%LOCALAPPDATA%\TectonicProject\Tectonic` | <code>echo TECTONIC_CACHE_PATH=$env:LOCALAPPDATA\TectonicProject\Tectonic | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append`</code> |

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ inputs:
1616
description: 'The version of biber to install. A value of `latest` will install the latest version of biber.'
1717

1818
runs:
19-
using: 'node20'
19+
using: 'node24'
2020
main: 'dist/index.js'
2121
branding:
2222
icon: book-open

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"devDependencies": {
3939
"@biomejs/biome": "2.2.4",
4040
"@octokit/types": "15.0.0",
41-
"@types/node": "24.5.1",
41+
"@types/node": "24.5.2",
4242
"@types/semver": "7.7.1",
4343
"@vercel/ncc": "0.38.3",
4444
"@vitest/coverage-v8": "3.2.4",

0 commit comments

Comments
 (0)