Skip to content

Commit

Permalink
💥 Upgrade from node 12 to node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
WtfJoke committed Sep 24, 2022
1 parent ed0724a commit f5b201a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ See [action.yml](https://github.com/WtfJoke/setup-tectonic/blob/main/action.yml)

```yml
steps:
- uses: wtfjoke/setup-tectonic@v1
- uses: wtfjoke/setup-tectonic@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: tectonic main.tex
```
You can also download a specific version of Tectonic
```yml
steps:
- uses: wtfjoke/setup-tectonic@v1
- uses: wtfjoke/setup-tectonic@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
tectonic-version: 0.7.1
Expand All @@ -41,7 +41,7 @@ steps:
If you want to use biber, specify a biber version (for a full example see [below](https://github.com/WtfJoke/setup-tectonic#with-biber))
```yml
steps:
- uses: wtfjoke/setup-tectonic@v1
- uses: wtfjoke/setup-tectonic@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
biber-version: 2.15
Expand All @@ -60,7 +60,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: wtfjoke/setup-tectonic@v1
- uses: wtfjoke/setup-tectonic@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Tectonic
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }}
restore-keys: |
${{ runner.os }}-tectonic-
- uses: wtfjoke/setup-tectonic@v1
- uses: wtfjoke/setup-tectonic@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Tectonic
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }}
restore-keys: |
${{ runner.os }}-tectonic-
- uses: wtfjoke/setup-tectonic@v1
- uses: wtfjoke/setup-tectonic@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
biber-version: "latest"
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ inputs:
description: 'The version of biber to install. A value of `latest` will install the latest version of biber.'

runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
branding:
icon: book-open
Expand Down

0 comments on commit f5b201a

Please sign in to comment.