We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9374721 commit e253b50Copy full SHA for e253b50
.github/dependabot.yml
@@ -0,0 +1,6 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "npm"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
.gitignore
@@ -1,2 +1,4 @@
-/.tmp/
+.idea/
+.tmp/
+.vscode/
node_modules/
action.yml
@@ -1,4 +1,4 @@
-name: 'buf-setup'
+name: "buf-setup"
description: >
Install buf for use in other jobs.
branding:
@@ -7,9 +7,11 @@ branding:
7
inputs:
8
version:
9
description: The version of buf to set up.
10
- default: '1.6.0'
+ required: false
11
+ default: "1.6.0"
12
github_token:
13
description: The GitHub token to use when making API requests.
14
15
runs:
- using: 'node12'
- main: './dist/main.js'
16
+ using: "node16"
17
+ main: "./dist/main.js"
0 commit comments