Skip to content
This repository was archived by the owner on Nov 6, 2024. It is now read-only.

Commit dc2f0bb

Browse files
niradlercasbs
andauthored
action (#21)
Co-authored-by: Nir Adler <nadler@paloaltonetworks.com>
1 parent 1692f5b commit dc2f0bb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
# Remove old release drafts by using the curl request for the available releases with draft flag
159159
- name: Remove Old Release Drafts
160160
env:
161-
GITHUB_TOKEN: ${{ secrets.YUVAL_GH_TOKEN }}
161+
GITHUB_TOKEN: ${{ secrets.PUSH_GH_TOKEN }}
162162
run: |
163163
gh api repos/{owner}/{repo}/releases \
164164
--jq '.[] | select(.draft == true) | .id' \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The Checkov plugin will invoke the latest version of ```Checkov```.
5454

5555
### Configuration
5656

57-
* Sign up to a Bridgecrew Community account [here](http://bridgecrew.cloud/). If you already have an account, sign in and go to the next step.
57+
* Sign up to a Bridgecrew Community account [here](https://bridgecrew.cloud/). If you already have an account, sign in and go to the next step.
5858

5959
* From [Integrations](https://www.bridgecrew.cloud/integrations/api-token), select **API Token** and copy the API key.
6060
* In Jetbrains, enter your API Token in the Checkov plugin settings page under tools.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# IntelliJ Platform Artifacts Repositories
22
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
33

4-
pluginGroup = com.github.bridgecrewio.checkovjetbrainsidea
4+
pluginGroup = com.github.bridgecrewio.prismajetbrainsidea
55
pluginName = checkov-jetbrains-idea
66
pluginVersion = 1.0.0
77
pluginSinceBuild = 201

src/main/kotlin/com/bridgecrew/services/checkovScanCommandsService/DockerCheckovScanCommandsService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class DockerCheckovScanCommandsService(project: Project) : CheckovScanCommandsSe
1212
private val volumeCertPath = "/usr/lib/ssl/cert.pem"
1313
override fun getCheckovRunningCommandByServiceType(outputFilePath: String): ArrayList<String> {
1414
val pluginVersion =
15-
PluginManagerCore.getPlugin(PluginId.getId("com.github.bridgecrewio.checkov"))?.version ?: "UNKNOWN"
15+
PluginManagerCore.getPlugin(PluginId.getId("com.github.bridgecrewio.prismacloud"))?.version ?: "UNKNOWN"
1616

1717
val dockerCommand = arrayListOf("docker", "run", "--rm", "-a", "stdout", "-a", "stderr", "--env", "BC_SOURCE=jetbrains", "--env", "BC_SOURCE_VERSION=$pluginVersion", "--env", "LOG_LEVEL=DEBUG")
1818
val prismaUrl = settings?.prismaURL

src/main/kotlin/com/bridgecrew/services/scan/CheckovScanService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class CheckovScanService: Disposable {
149149
}
150150

151151
private fun generateCheckovCommand(execCommand: List<String>): GeneralCommandLine {
152-
val pluginVersion = PluginManagerCore.getPlugin(PluginId.getId("com.github.bridgecrewio.checkov"))?.version
152+
val pluginVersion = PluginManagerCore.getPlugin(PluginId.getId("com.github.bridgecrewio.prismacloud"))?.version
153153
?: "UNKNOWN"
154154
val prismaUrl = settings?.prismaURL
155155

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<idea-plugin>
2-
<id>com.github.bridgecrewio.checkov</id>
2+
<id>com.github.bridgecrewio.prismacloud</id>
33
<name>Prisma Cloud</name>
44
<vendor email="info@bridgecrew.io">PrismaCloud</vendor>
55
<description><![CDATA[

0 commit comments

Comments
 (0)