Skip to content

Commit

Permalink
Merge pull request #36 from chenrui333/node-16
Browse files Browse the repository at this point in the history
deps: update to use node v16
  • Loading branch information
mislav committed May 3, 2022
2 parents 280f532 + f364e76 commit 677d748
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '12.x'
cache: 'npm'
node-version: "16.x"
cache: "npm"
- run: npm ci
- name: Run tests
run: |
Expand Down
8 changes: 4 additions & 4 deletions action.yml
@@ -1,9 +1,9 @@
name: bump-homebrew-formula
description: 'Bump Homebrew formula after a new release'
author: '@mislav'
description: "Bump Homebrew formula after a new release"
author: "@mislav"
runs:
using: node12
main: './lib/index.js'
using: node16
main: "./lib/index.js"
inputs:
formula-name:
description: The name of the Homebrew formula (defaults to lower-cased repository name)
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -14,11 +14,11 @@
"@octokit/request-error": "^2.1.0"
},
"devDependencies": {
"@types/node": "^14.14.25",
"@types/node": "^16.11.7",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@vercel/ncc": "^0.27.0",
"@vercel/ncc": "^0.33.4",
"ava": "^3.11.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
Expand Down

0 comments on commit 677d748

Please sign in to comment.