grepleaks 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/grepleaks.js +1 -1
  2. package/package.json +1 -1
package/bin/grepleaks.js CHANGED
@@ -160,7 +160,7 @@ async function sendScan(zipPath, apiKey) {
160
160
  path: url.pathname,
161
161
  method: 'POST',
162
162
  headers: {
163
- 'Authorization': `Bearer ${apiKey}`,
163
+ 'X-API-Key': apiKey,
164
164
  'Content-Type': `multipart/form-data; boundary=${boundary}`,
165
165
  'Content-Length': body.length,
166
166
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grepleaks",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Security scanner for your code - detect vulnerabilities, secrets, and misconfigurations",
5
5
  "main": "bin/grepleaks.js",
6
6
  "bin": {