You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ npm run test
41
41
42
42
### 6. Build
43
43
44
-
It is necessary to compile the code before it can be used by GitHub Actions. We check in the `node_modules` to provide runtime dependencies to the system using the Action, so be careful not to `git add` all the development dependencies you might have under your local `node_modules`.
44
+
It is necessary to compile the code before it can be used by GitHub Actions. We check in the `node_modules` to provide runtime dependencies to the system using the Action, so be careful not to `git add` all the development dependencies you might have under your local `node_modules`.
45
45
Remember to run these commands before committing any code changes:
Copy file name to clipboardExpand all lines: README.md
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ If you want to pin a major or minor version you can use the `.x` wildcard:
29
29
- name: Install Protoc
30
30
uses: arduino/setup-protoc@v1
31
31
with:
32
-
version: '3.x'
32
+
version: "3.x"
33
33
```
34
34
35
35
You can also require to include releases marked as `pre-release` in Github using the `include-pre-releases` flag (the dafault value for this flag is `false`)
@@ -38,7 +38,7 @@ You can also require to include releases marked as `pre-release` in Github using
38
38
- name: Install Protoc
39
39
uses: arduino/setup-protoc@v1
40
40
with:
41
-
version: '3.x'
41
+
version: "3.x"
42
42
include-pre-releases: true
43
43
```
44
44
@@ -48,7 +48,7 @@ To pin the exact version:
48
48
- name: Install Protoc
49
49
uses: arduino/setup-protoc@v1
50
50
with:
51
-
version: '3.9.1'
51
+
version: "3.9.1"
52
52
```
53
53
54
54
The action queries the GitHub API to fetch releases data, to avoid rate limiting,
@@ -61,13 +61,12 @@ pass the default token with the `repo-token` variable:
61
61
repo-token: ${{ secrets.GITHUB_TOKEN }}
62
62
```
63
63
64
-
65
64
## Enable verbose logging for a pipeline
65
+
66
66
Additional log events with the prefix ::debug:: can be enabled by setting the secret `ACTIONS_STEP_DEBUG` to `true`.
67
67
68
68
See [step-debug-logs](https://github.com/actions/toolkit/blob/master/docs/action-debugging.md#step-debug-logs) for reference.
69
69
70
-
71
70
## Security
72
71
73
72
If you think you found a vulnerability or other security-related bug in this project, please read our
0 commit comments