Skip to content

Commit

Permalink
Bump dependencies (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabasoad authored Jan 17, 2021
1 parent 95f27de commit da2761d
Show file tree
Hide file tree
Showing 7 changed files with 149 additions and 115 deletions.
4 changes: 3 additions & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Closes #<IssueNumber>
<!-- markdownlint-disable-file MD041 -->

Closes #{IssueNumber}

## Pull request checklist

Expand Down
20 changes: 15 additions & 5 deletions .github/workflows/check-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: yarn upgrade --latest
- name: Compile
run: |
rm yarn.lock
rm -f yarn.lock
yarn install
yarn run build
shell: bash
Expand All @@ -37,19 +37,29 @@ jobs:
- name: Create PR
if: ${{ steps.git-diff.outputs.count > 0 }}
uses: peter-evans/[email protected]
env:
HUSKY: 0
with:
author: ${{ github.actor }} <${{ github.actor }}@gmail.com>
assignees: ${{ github.actor }}
base: main
body: |
## Description
Bump dependencies
## Workflow
- _Name:_ ${{ github.workflow }}
- _Run ID:_ ${{ github.run_id }}
- _Run Number:_ ${{ github.run_number }}
- Name: ${{ github.workflow }}
- Run ID: ${{ github.run_id }}
- Run Number: ${{ github.run_number }}
_Auto-generated by [peter-evans/create-pull-request][1]_
[1]: https://github.com/peter-evans/create-pull-request
branch: bump/patch
branch-suffix: timestamp
commit-message: 'Bump dependencies by "${{ github.workflow }} #${{ github.run_number }}"'
committer: github-actions <[email protected]>
delete-branch: true
labels: dependencies
reviewers: ${{ github.actor }}
Expand Down
4 changes: 3 additions & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
. "$(dirname $0)/_/husky.sh"

git secrets --commit_msg_hook -- "$@"
4 changes: 3 additions & 1 deletion .husky/prepare-commit-msg
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
. "$(dirname $0)/_/husky.sh"

git secrets --prepare_commit_msg_hook -- "$@"
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "twilio-voice-call-action",
"version": "1.1.6",
"version": "1.1.7",
"description": "This GitHub action sends voice call with the defined text.",
"main": "dist/index.js",
"repository": {
Expand All @@ -22,8 +22,8 @@
"scripts": {
"build": "ncc build -m src/index.js",
"lint:md": "markdownlint --config .markdownlint.yml '**/*.md'",
"lint:ts": "eslint src __tests__",
"lint": "yarn run lint:md && yarn run lint:ts",
"lint:js": "eslint src __tests__",
"lint": "yarn run lint:md && yarn run lint:js",
"postinstall": "yarn husky install",
"prepare": "yarn run snyk-protect",
"security:auth": "snyk auth",
Expand All @@ -35,20 +35,20 @@
"dependencies": {
"@actions/core": "1.2.6",
"@actions/github": "4.0.0",
"twilio": "3.54.1"
"twilio": "3.55.0"
},
"devDependencies": {
"@vercel/ncc": "0.26.1",
"@vercel/ncc": "0.27.0",
"chai": "4.2.0",
"eslint": "7.16.0",
"eslint": "7.18.0",
"eslint-config-google": "0.14.0",
"git-branch-is": "4.0.0",
"husky": "5.0.6",
"markdownlint-cli": "0.26.0",
"mocha": "8.2.1",
"mocha-param": "2.0.1",
"nyc": "15.1.0",
"snyk": "1.437.3"
"snyk": "1.437.4"
},
"snyk": true
}
Loading

0 comments on commit da2761d

Please sign in to comment.