Skip to content

Commit db888fa

Browse files
authored
chore: fix dependabot alerts (#2664)
#2660 Signed-off-by: Ramkumar Chinchani <[email protected]>
1 parent d730811 commit db888fa

File tree

6 files changed

+64
-53
lines changed

6 files changed

+64
-53
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
# Initializes the CodeQL tools for scanning.
5555
- name: Initialize CodeQL
56-
uses: github/codeql-action/[email protected].6
56+
uses: github/codeql-action/[email protected].7
5757
with:
5858
languages: ${{ matrix.language }}
5959
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -64,7 +64,7 @@ jobs:
6464
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6565
# If this step fails, then you should remove it and run the build manually (see below)
6666
- name: Autobuild
67-
uses: github/codeql-action/[email protected].6
67+
uses: github/codeql-action/[email protected].7
6868

6969
# ℹ️ Command-line programs to run using the OS shell.
7070
# 📚 https://git.io/JvXDl
@@ -77,4 +77,4 @@ jobs:
7777
# make release
7878

7979
- name: Perform CodeQL Analysis
80-
uses: github/codeql-action/[email protected].6
80+
uses: github/codeql-action/[email protected].7

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ jobs:
237237
TRIVY_USERNAME: ${{ github.actor }}
238238
TRIVY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
239239
- name: Upload Trivy scan results to GitHub Security tab
240-
uses: github/codeql-action/[email protected].6
240+
uses: github/codeql-action/[email protected].7
241241
with:
242242
sarif_file: 'trivy-results.sarif'
243243

@@ -274,7 +274,7 @@ jobs:
274274
TRIVY_USERNAME: ${{ github.actor }}
275275
TRIVY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
276276
- name: Upload Trivy scan results to GitHub Security tab
277-
uses: github/codeql-action/[email protected].6
277+
uses: github/codeql-action/[email protected].7
278278
with:
279279
sarif_file: 'trivy-results.sarif'
280280

.github/workflows/scorecards.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ jobs:
5757

5858
# Upload the results to GitHub's code scanning dashboard.
5959
- name: "Upload to code-scanning"
60-
uses: github/codeql-action/[email protected].6
60+
uses: github/codeql-action/[email protected].7
6161
with:
6262
sarif_file: results.sarif

go.mod

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/aquasecurity/trivy-db v0.0.0-20231005141211-4fc651f7ac8d
1010
github.com/aws/aws-sdk-go v1.55.5
1111
github.com/aws/aws-sdk-go-v2 v1.30.5
12-
github.com/aws/aws-sdk-go-v2/config v1.27.28
12+
github.com/aws/aws-sdk-go-v2/config v1.27.33
1313
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.15.3
1414
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.34.9
1515
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.32.8
@@ -35,7 +35,7 @@ require (
3535
github.com/gorilla/sessions v1.3.0
3636
github.com/hashicorp/golang-lru/v2 v2.0.7
3737
github.com/json-iterator/go v1.1.12
38-
github.com/migueleliasweb/go-github-mock v1.0.0
38+
github.com/migueleliasweb/go-github-mock v1.0.1
3939
github.com/mitchellh/mapstructure v1.5.0
4040
github.com/nmcclain/ldap v0.0.0-20210720162743-7f8d1e44eeba
4141
github.com/notaryproject/notation-core-go v1.1.0
@@ -58,15 +58,15 @@ require (
5858
github.com/swaggo/http-swagger v1.3.4
5959
github.com/swaggo/swag v1.16.3
6060
github.com/vektah/gqlparser/v2 v2.5.16
61-
github.com/zitadel/oidc/v3 v3.27.0
61+
github.com/zitadel/oidc/v3 v3.29.1
6262
go.etcd.io/bbolt v1.3.10
6363
golang.org/x/crypto v0.27.0
6464
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
65-
golang.org/x/oauth2 v0.22.0
65+
golang.org/x/oauth2 v0.23.0
6666
google.golang.org/protobuf v1.34.2
6767
gopkg.in/resty.v1 v1.12.0
6868
gopkg.in/yaml.v3 v3.0.1
69-
modernc.org/sqlite v1.33.0
69+
modernc.org/sqlite v1.33.1
7070
oras.land/oras-go/v2 v2.5.0
7171
)
7272

@@ -144,8 +144,8 @@ require (
144144
github.com/aquasecurity/trivy-checks v0.13.0 // indirect
145145
github.com/aquasecurity/trivy-java-db v0.0.0-20240109071736-184bd7481d48 // indirect
146146
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
147-
github.com/aws/aws-sdk-go-v2/credentials v1.17.28 // indirect
148-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12 // indirect
147+
github.com/aws/aws-sdk-go-v2/credentials v1.17.32 // indirect
148+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.13 // indirect
149149
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.17 // indirect
150150
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.17 // indirect
151151
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
@@ -156,11 +156,11 @@ require (
156156
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.25.3 // indirect
157157
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect
158158
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.18 // indirect
159-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18 // indirect
159+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.19 // indirect
160160
github.com/aws/aws-sdk-go-v2/service/s3 v1.58.2 // indirect
161-
github.com/aws/aws-sdk-go-v2/service/sso v1.22.5 // indirect
162-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5 // indirect
163-
github.com/aws/aws-sdk-go-v2/service/sts v1.30.4 // indirect
161+
github.com/aws/aws-sdk-go-v2/service/sso v1.22.7 // indirect
162+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.7 // indirect
163+
github.com/aws/aws-sdk-go-v2/service/sts v1.30.7 // indirect
164164
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20240730143543-a8d7d3c42ca1 // indirect
165165
github.com/beorn7/perks v1.0.1 // indirect
166166
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
@@ -259,7 +259,7 @@ require (
259259
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
260260
github.com/google/go-cmp v0.6.0 // indirect
261261
github.com/google/go-github/v55 v55.0.0 // indirect
262-
github.com/google/go-github/v61 v61.0.0 // indirect
262+
github.com/google/go-github/v64 v64.0.0 // indirect
263263
github.com/google/go-querystring v1.1.0 // indirect
264264
github.com/google/gofuzz v1.2.0 // indirect
265265
github.com/google/licenseclassifier/v2 v2.0.0 // indirect
@@ -446,7 +446,7 @@ require (
446446
go.opentelemetry.io/contrib/exporters/autoexport v0.53.0 // indirect
447447
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
448448
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
449-
go.opentelemetry.io/otel v1.28.0 // indirect
449+
go.opentelemetry.io/otel v1.29.0 // indirect
450450
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.4.0 // indirect
451451
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0 // indirect
452452
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.28.0 // indirect
@@ -458,11 +458,11 @@ require (
458458
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.28.0 // indirect
459459
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.28.0 // indirect
460460
go.opentelemetry.io/otel/log v0.4.0 // indirect
461-
go.opentelemetry.io/otel/metric v1.28.0 // indirect
461+
go.opentelemetry.io/otel/metric v1.29.0 // indirect
462462
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
463463
go.opentelemetry.io/otel/sdk/log v0.4.0 // indirect
464464
go.opentelemetry.io/otel/sdk/metric v1.28.0 // indirect
465-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
465+
go.opentelemetry.io/otel/trace v1.29.0 // indirect
466466
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
467467
go.starlark.net v0.0.0-20240725214946-42030a7cedce // indirect
468468
go.step.sm/crypto v0.51.1 // indirect

0 commit comments

Comments
 (0)