Skip to content

Commit 9d1bfb0

Browse files
fix conflict
2 parents 780cb9e + 8f141c2 commit 9d1bfb0

File tree

30 files changed

+788
-159
lines changed

30 files changed

+788
-159
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
run: |
1919
sudo chmod +x ./internal/commands/.scripts/up.sh
2020
./internal/commands/.scripts/up.sh
21-
- name: Check if total coverage is greater then 78.2
21+
- name: Check if total coverage is greater then 77.7
2222
shell: bash
2323
run: |
2424
CODE_COV=$(go tool cover -func cover.out | grep total | awk '{print substr($3, 1, length($3)-1)}')
25-
EXPECTED_CODE_COV=78.2
25+
EXPECTED_CODE_COV=77.7
2626
var=$(awk 'BEGIN{ print "'$CODE_COV'"<"'$EXPECTED_CODE_COV'" }')
2727
if [ "$var" -eq 1 ];then
2828
echo "Your code coverage is too low. Coverage precentage is: $CODE_COV"
@@ -109,7 +109,7 @@ jobs:
109109
shell: bash
110110
run: |
111111
CODE_COV=$(go tool cover -func cover.out | grep total | awk '{print substr($3, 1, length($3)-1)}')
112-
EXPECTED_CODE_COV=77.5
112+
EXPECTED_CODE_COV=77.4
113113
var=$(awk 'BEGIN{ print "'$CODE_COV'"<"'$EXPECTED_CODE_COV'" }')
114114
if [ "$var" -eq 1 ];then
115115
echo "Your code coverage is too low. Coverage precentage is: $CODE_COV"

CODEOWNERS

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
# Codeowners file
1+
# Code ownership rules
2+
3+
# Only this user can approve changes to the CODEOWNERS file
4+
/CODEOWNERS @cx-anurag-dalke
5+
26
# Each line is a file pattern followed by one or more owners
37

48
# Specify the default owners for the entire repository
5-
* @cx-anurag-dalke
9+
* @cx-anurag-dalke @cx-anjali-deore @cx-umesh-waghode

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ func bindKeysToEnvAndDefault() {
166166
}
167167

168168
func bindProxy() {
169-
err := viper.BindEnv(params.ProxyKey, params.CxProxyEnv, params.ProxyEnv)
169+
err := viper.BindEnv(params.ProxyKey, params.CxProxyEnv, params.ProxyEnv, params.ProxyLowerCaseEnv)
170170
if err != nil {
171171
exitIfError(err)
172172
}

go.mod

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/checkmarx/ast-cli
22

3-
go 1.24.4
3+
go 1.24.6
44

55
require (
6-
github.com/Checkmarx/containers-resolver v1.0.19
6+
github.com/Checkmarx/containers-resolver v1.0.20
77
github.com/Checkmarx/containers-types v1.0.9
88
github.com/Checkmarx/gen-ai-prompts v0.0.0-20240807143411-708ceec12b63
99
github.com/Checkmarx/gen-ai-wrapper v1.0.2
@@ -25,10 +25,10 @@ require (
2525
github.com/stretchr/testify v1.10.0
2626
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80
2727
github.com/xeipuuv/gojsonschema v1.2.0
28-
golang.org/x/crypto v0.39.0
29-
golang.org/x/sync v0.15.0
30-
golang.org/x/text v0.26.0
31-
google.golang.org/grpc v1.72.0-dev
28+
golang.org/x/crypto v0.40.0
29+
golang.org/x/sync v0.16.0
30+
golang.org/x/text v0.27.0
31+
google.golang.org/grpc v1.72.2
3232
google.golang.org/protobuf v1.36.6
3333
gopkg.in/yaml.v3 v3.0.1
3434
gotest.tools v2.2.0+incompatible
@@ -41,8 +41,8 @@ require (
4141
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
4242
github.com/BobuSumisu/aho-corasick v1.0.3 // indirect
4343
github.com/BurntSushi/toml v1.5.0 // indirect
44-
github.com/Checkmarx/containers-images-extractor v1.0.17
45-
github.com/Checkmarx/containers-syft-packages-extractor v1.0.15 // indirect
44+
github.com/Checkmarx/containers-images-extractor v1.0.18
45+
github.com/Checkmarx/containers-syft-packages-extractor v1.0.16 // indirect
4646
github.com/CycloneDX/cyclonedx-go v0.9.2 // indirect
4747
github.com/DataDog/zstd v1.5.6 // indirect
4848
github.com/Masterminds/goutils v1.1.1 // indirect
@@ -51,7 +51,7 @@ require (
5151
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
5252
github.com/Masterminds/squirrel v1.5.4 // indirect
5353
github.com/Microsoft/go-winio v0.6.2 // indirect
54-
github.com/Microsoft/hcsshim v0.12.9 // indirect
54+
github.com/Microsoft/hcsshim v0.13.1-0.20250731174403-0842153594e0 // indirect
5555
github.com/ProtonMail/go-crypto v1.1.6 // indirect
5656
github.com/acobaugh/osrelease v0.1.0 // indirect
5757
github.com/adrg/xdg v0.5.3 // indirect
@@ -87,14 +87,14 @@ require (
8787
github.com/charmbracelet/x/term v0.2.1 // indirect
8888
github.com/cloudflare/circl v1.6.1 // indirect
8989
github.com/containerd/cgroups/v3 v3.0.5 // indirect
90-
github.com/containerd/containerd v1.7.27 // indirect
91-
github.com/containerd/containerd/api v1.8.0 // indirect
90+
github.com/containerd/containerd v1.7.28 // indirect
91+
github.com/containerd/containerd/api v1.9.0 // indirect
9292
github.com/containerd/continuity v0.4.5 // indirect
9393
github.com/containerd/errdefs v1.0.0 // indirect
9494
github.com/containerd/errdefs/pkg v0.3.0 // indirect
9595
github.com/containerd/fifo v1.1.0 // indirect
9696
github.com/containerd/log v0.1.0 // indirect
97-
github.com/containerd/platforms v0.2.1 // indirect
97+
github.com/containerd/platforms v1.0.0-rc.1 // indirect
9898
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect
9999
github.com/containerd/ttrpc v1.2.7 // indirect
100100
github.com/containerd/typeurl/v2 v2.2.3 // indirect
@@ -194,7 +194,7 @@ require (
194194
github.com/moby/sys/mountinfo v0.7.2 // indirect
195195
github.com/moby/sys/sequential v0.6.0 // indirect
196196
github.com/moby/sys/signal v0.7.1 // indirect
197-
github.com/moby/sys/user v0.3.0 // indirect
197+
github.com/moby/sys/user v0.4.0 // indirect
198198
github.com/moby/sys/userns v0.1.0 // indirect
199199
github.com/moby/term v0.5.2 // indirect
200200
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
@@ -269,13 +269,13 @@ require (
269269
go.uber.org/mock v0.5.2 // indirect
270270
go.uber.org/multierr v1.11.0 // indirect
271271
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
272-
golang.org/x/mod v0.25.0 // indirect
273-
golang.org/x/net v0.40.0 // indirect
274-
golang.org/x/oauth2 v0.28.0 // indirect
275-
golang.org/x/sys v0.33.0 // indirect
276-
golang.org/x/term v0.32.0 // indirect
277-
golang.org/x/time v0.11.0 // indirect
278-
golang.org/x/tools v0.33.0 // indirect
272+
golang.org/x/mod v0.26.0 // indirect
273+
golang.org/x/net v0.42.0 // indirect
274+
golang.org/x/oauth2 v0.30.0 // indirect
275+
golang.org/x/sys v0.34.0 // indirect
276+
golang.org/x/term v0.33.0 // indirect
277+
golang.org/x/time v0.12.0 // indirect
278+
golang.org/x/tools v0.34.0 // indirect
279279
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
280280
google.golang.org/genproto v0.0.0-20250324211829-b45e905df463 // indirect
281281
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect

0 commit comments

Comments
 (0)