Skip to content

Commit

Permalink
module and image rename
Browse files Browse the repository at this point in the history
  • Loading branch information
amirmalka committed Aug 10, 2022
1 parent 7188ce4 commit 80a7300
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Set image name
id: image-name
run: echo '::set-output name=IMAGE_NAME::quay.io/${{ github.repository_owner }}/images-vulnerabilities-scan'
run: echo '::set-output name=IMAGE_NAME::quay.io/${{ github.repository_owner }}/kubevuln'

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
6 changes: 3 additions & 3 deletions docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,15 @@ definitions:
postDBCommandAcceptedResponseBody:
description: Response body of the postDBCommandAccepted
type: string
x-go-package: ca-vuln-scan/docs
x-go-package: kubevuln/docs
postDBCommandBadRequestResponseBody:
type: string
x-go-package: ca-vuln-scan/docs
x-go-package: kubevuln/docs
postScanImageAcceptedResponseBody:
description: 'Example: scan request accepted'
title: Response body of a response that a POST Scan Image request has been Accepted.
type: string
x-go-package: ca-vuln-scan/docs
x-go-package: kubevuln/docs
info:
description: The Kubescape vulnerability scanner allows clients to check images
for vulnerabilities.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module ca-vuln-scan
module github.com/kubescape/kubevuln

go 1.18

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package main

import (
"ca-vuln-scan/docs"
"ca-vuln-scan/process_request"
"encoding/json"
"flag"
"fmt"
Expand All @@ -14,6 +12,8 @@ import (
sysreport "github.com/armosec/logger-go/system-reports/datastructures"
pkgcautils "github.com/armosec/utils-k8s-go/armometadata"
"github.com/armosec/utils-k8s-go/probes"
"github.com/kubescape/kubevuln/docs"
"github.com/kubescape/kubevuln/process_request"

wssc "github.com/armosec/armoapi-go/apis"
)
Expand Down

0 comments on commit 80a7300

Please sign in to comment.