From 40c912f787f2457accbf704a126678f7d1845507 Mon Sep 17 00:00:00 2001 From: Matthias Pfeil Date: Wed, 4 Jan 2023 11:01:37 +0100 Subject: [PATCH] Update action dependencies --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 6 +++--- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 229d513..521affa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,7 +29,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: lanuv-parser - path: dist + path: . - name: Release new version run: | npm version ${{ github.event.release.tag_name }} --no-git-tag-version --no-commit-hooks diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c1bdffa..2c134c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,13 +8,13 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x] + node-version: [16.x] steps: - name: Checkout code - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: yarn install and test diff --git a/package.json b/package.json index 630747a..c7aecd7 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "email": "matthias.pfeil@wwu.de" }, "engines": { - "node": ">=10" + "node": ">=14" }, "scripts": { "test": "eslint *.js && ava"