Skip to content

Commit e253b50

Browse files
authoredJun 27, 2022
add dependabot and some cleanup (#36)
1 parent 9374721 commit e253b50

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed
 

‎.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

‎.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
/.tmp/
1+
.idea/
2+
.tmp/
3+
.vscode/
24
node_modules/

‎action.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'buf-setup'
1+
name: "buf-setup"
22
description: >
33
Install buf for use in other jobs.
44
branding:
@@ -7,9 +7,11 @@ branding:
77
inputs:
88
version:
99
description: The version of buf to set up.
10-
default: '1.6.0'
10+
required: false
11+
default: "1.6.0"
1112
github_token:
1213
description: The GitHub token to use when making API requests.
14+
required: false
1315
runs:
14-
using: 'node12'
15-
main: './dist/main.js'
16+
using: "node16"
17+
main: "./dist/main.js"

0 commit comments

Comments
 (0)
Please sign in to comment.