From f5b201a5d13b24ee58bebb26307df172b8e02934 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 24 Sep 2022 14:47:17 +0200 Subject: [PATCH] :boom: Upgrade from node 12 to node 16 see https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- README.md | 12 ++++++------ action.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4e960e0..903aff6 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ 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 @@ -31,7 +31,7 @@ steps: 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 @@ -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 @@ -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 @@ -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 @@ -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" diff --git a/action.yml b/action.yml index 3dd6c64..0aa8aed 100644 --- a/action.yml +++ b/action.yml @@ -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