Skip to content

Commit

Permalink
chore(deps): bump owenrumney/go-sarif from v2.1.3 to v2.2.0 (#4378)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyLewen committed May 16, 2023
1 parent 7a20d96 commit 864ad10
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ require (
github.com/opencontainers/go-digest v1.0.0
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221020182949-4df8887994e8
github.com/openvex/go-vex v0.2.0
github.com/owenrumney/go-sarif/v2 v2.1.3
github.com/owenrumney/go-sarif/v2 v2.2.0
github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170
github.com/samber/lo v1.38.1
github.com/saracen/walker v0.1.3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1438,8 +1438,8 @@ github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYr
github.com/openvex/go-vex v0.2.0 h1:7Q6VzdpZSZzYUyXB1dio/9LCGHp1iL3JldC+hMsbFg0=
github.com/openvex/go-vex v0.2.0/go.mod h1:jYmYbhQAO/0hquryXND/jMVDBcob8/KkVgzUEUAHsFI=
github.com/owenrumney/go-sarif v1.1.1/go.mod h1:dNDiPlF04ESR/6fHlPyq7gHKmrM0sHUvAGjsoh8ZH0U=
github.com/owenrumney/go-sarif/v2 v2.1.3 h1:1guchw824yg1CwjredY8pnzcE0SG+sfNzFY5CUYWgE4=
github.com/owenrumney/go-sarif/v2 v2.1.3/go.mod h1:MSqMMx9WqlBSY7pXoOZWgEsVB4FDNfhcaXDA1j6Sr+w=
github.com/owenrumney/go-sarif/v2 v2.2.0 h1:1DmZaijK0HBZCR1fgcDSGa7VzYkU9NDmbZ7qC2QfUjE=
github.com/owenrumney/go-sarif/v2 v2.2.0/go.mod h1:MSqMMx9WqlBSY7pXoOZWgEsVB4FDNfhcaXDA1j6Sr+w=
github.com/owenrumney/squealer v1.1.1 h1:e+fg29IxdNARSc4s7CbYnqVSepm9eOqErLNNNR5XbAs=
github.com/owenrumney/squealer v1.1.1/go.mod h1:Q5ekVoyFSG2FlnCVIBGsyk/FSMA/ATv8PtwKIVX7t/o=
github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 h1:DiLBVp4DAcZlBVBEtJpNWZpZVq0AEeCY7Hqk8URVs4o=
Expand Down
2 changes: 1 addition & 1 deletion integration/testdata/alpine-310.sarif.golden
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "2.1.0",
"$schema": "https://json.schemastore.org/sarif-2.1.0-rtm.5.json",
"$schema": "https://json.schemastore.org/sarif-2.1.0.json",
"runs": [
{
"tool": {
Expand Down
8 changes: 4 additions & 4 deletions pkg/report/sarif_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func TestReportWriter_Sarif(t *testing.T) {
},
want: &sarif.Report{
Version: "2.1.0",
Schema: "https://json.schemastore.org/sarif-2.1.0-rtm.5.json",
Schema: "https://json.schemastore.org/sarif-2.1.0.json",
Runs: []*sarif.Run{
{
Tool: sarif.Tool{
Expand Down Expand Up @@ -214,7 +214,7 @@ func TestReportWriter_Sarif(t *testing.T) {
},
want: &sarif.Report{
Version: "2.1.0",
Schema: "https://json.schemastore.org/sarif-2.1.0-rtm.5.json",
Schema: "https://json.schemastore.org/sarif-2.1.0.json",
Runs: []*sarif.Run{
{
Tool: sarif.Tool{
Expand Down Expand Up @@ -354,7 +354,7 @@ func TestReportWriter_Sarif(t *testing.T) {
},
want: &sarif.Report{
Version: "2.1.0",
Schema: "https://json.schemastore.org/sarif-2.1.0-rtm.5.json",
Schema: "https://json.schemastore.org/sarif-2.1.0.json",
Runs: []*sarif.Run{
{
Tool: sarif.Tool{
Expand Down Expand Up @@ -429,7 +429,7 @@ func TestReportWriter_Sarif(t *testing.T) {
name: "no vulns",
want: &sarif.Report{
Version: "2.1.0",
Schema: "https://json.schemastore.org/sarif-2.1.0-rtm.5.json",
Schema: "https://json.schemastore.org/sarif-2.1.0.json",
Runs: []*sarif.Run{
{
Tool: sarif.Tool{
Expand Down

0 comments on commit 864ad10

Please sign in to comment.