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
# SecureStack API key - generate an API key at https://app.securestack.com
13
+
securestack_api_key:
14
+
# SecureStack Application ID - can be retrieved by accessing required application at https://app.securestack.com
15
+
securestack_app_id:
16
+
# Severities lower than this value will be reported in the workflow console but will not cause an error for the action; value should be one of: critical | high | medium | low
17
+
severity:
18
+
# Severities lower than this value will be reported in the workflow console but will not cause an error for the action; value should be one of: critical | high | medium | low
19
+
language:
20
+
# Optional flags for the bloodhound-cli code command - run bloodhound cli code --help for more details
# weight multiplier for labels (negative to exclude)
67
+
multiplier_labels: # default is example:-1 epic:0.142857 blocked:0.142857 invalid:0.142857
68
+
# largest pN-label (lowest priority)
69
+
p_label_graveyard: # default is 4
70
+
# URL to post slack payload to (requires `people.json`)
71
+
slack_webhook: # optional
72
+
73
+
7
74
on:
8
75
workflow_dispatch:
9
76
@@ -32,6 +99,25 @@ jobs:
32
99
repo: correctRepo
33
100
})
34
101
102
+
- name: Setup Go environment
103
+
uses: actions/setup-go@v5.5.0
104
+
with:
105
+
# The Go version to download (if necessary) and use. Supports semver spec and ranges. Be sure to enclose this option in single quotation marks.
106
+
go-version: # optional
107
+
# Path to the go.mod or go.work file.
108
+
go-version-file: # optional
109
+
# Set this option to true if you want the action to always check for the latest available version that satisfies the version spec
110
+
check-latest: # optional
111
+
# Used to pull Go distributions from go-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
0 commit comments