Skip to content

Commit 4f25853

Browse files
authored
chore: upgrade various dependencies (#513)
1 parent 7f2a772 commit 4f25853

File tree

5 files changed

+115
-113
lines changed

5 files changed

+115
-113
lines changed

.github/workflows/cicd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040

4141
- name: Harden Runner
42-
uses: step-security/[email protected].2
42+
uses: step-security/[email protected].3
4343
with:
4444
egress-policy: block
4545
allowed-endpoints: >
@@ -89,7 +89,7 @@ jobs:
8989
steps:
9090

9191
- name: Harden Runner
92-
uses: step-security/[email protected].2
92+
uses: step-security/[email protected].3
9393
with:
9494
egress-policy: block
9595
allowed-endpoints: >
@@ -154,7 +154,7 @@ jobs:
154154
steps:
155155

156156
- name: Harden Runner
157-
uses: step-security/[email protected].2
157+
uses: step-security/[email protected].3
158158
with:
159159
egress-policy: block
160160
allowed-endpoints: >
@@ -196,7 +196,7 @@ jobs:
196196
steps:
197197

198198
- name: Harden Runner
199-
uses: step-security/[email protected].2
199+
uses: step-security/[email protected].3
200200
with:
201201
egress-policy: block
202202
allowed-endpoints: >
@@ -242,7 +242,7 @@ jobs:
242242
steps:
243243

244244
- name: Harden Runner
245-
uses: step-security/[email protected].2
245+
uses: step-security/[email protected].3
246246
with:
247247
egress-policy: block
248248
allowed-endpoints: >

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535

3636
- name: Harden CI
37-
uses: step-security/[email protected].2
37+
uses: step-security/[email protected].3
3838
with:
3939
disable-sudo: true
4040
egress-policy: block

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repos:
3131
- id: trailing-whitespace
3232

3333
- repo: https://github.com/golangci/golangci-lint
34-
rev: v2.6.2
34+
rev: v2.7.2
3535
hooks:
3636
- id: golangci-lint-full
3737
args: ["--config=.golangci.yml"]

go.mod

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
module github.com/burningmantech/ranger-ims-go
22

3-
go 1.25.4
3+
go 1.25.5
44

55
require (
66
github.com/a-h/templ v0.3.960
7-
github.com/aws/aws-sdk-go-v2/config v1.32.2
8-
github.com/aws/aws-sdk-go-v2/service/s3 v1.92.1
9-
github.com/aws/smithy-go v1.23.2
7+
github.com/aws/aws-sdk-go-v2/config v1.32.5
8+
github.com/aws/aws-sdk-go-v2/service/s3 v1.93.2
9+
github.com/aws/smithy-go v1.24.0
1010
github.com/gabriel-vasile/mimetype v1.4.11
1111
github.com/go-sql-driver/mysql v1.9.3
1212
github.com/golang-jwt/jwt/v5 v5.3.0
1313
github.com/joho/godotenv v1.5.1
1414
github.com/launchdarkly/eventsource v1.11.0
15-
github.com/spf13/cobra v1.10.1
15+
github.com/spf13/cobra v1.10.2
1616
github.com/stretchr/testify v1.11.1
1717
github.com/testcontainers/testcontainers-go v0.40.0
18-
golang.org/x/crypto v0.45.0
19-
golang.org/x/sync v0.18.0
18+
golang.org/x/crypto v0.46.0
19+
golang.org/x/sync v0.19.0
2020
)
2121

2222
require (
@@ -29,25 +29,26 @@ require (
2929
github.com/air-verse/air v1.62.0 // indirect
3030
github.com/andybalholm/brotli v1.1.1 // indirect
3131
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
32-
github.com/aws/aws-sdk-go-v2 v1.40.0 // indirect
33-
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.3 // indirect
34-
github.com/aws/aws-sdk-go-v2/credentials v1.19.2 // indirect
35-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.14 // indirect
36-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.14 // indirect
37-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.14 // indirect
32+
github.com/aws/aws-sdk-go-v2 v1.41.0 // indirect
33+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4 // indirect
34+
github.com/aws/aws-sdk-go-v2/credentials v1.19.5 // indirect
35+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.16 // indirect
36+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.16 // indirect
37+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.16 // indirect
3838
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect
39-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.14 // indirect
40-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.3 // indirect
41-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.5 // indirect
42-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.14 // indirect
43-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.14 // indirect
44-
github.com/aws/aws-sdk-go-v2/service/signin v1.0.2 // indirect
45-
github.com/aws/aws-sdk-go-v2/service/sso v1.30.5 // indirect
46-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.10 // indirect
47-
github.com/aws/aws-sdk-go-v2/service/sts v1.41.2 // indirect
39+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.16 // indirect
40+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 // indirect
41+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.7 // indirect
42+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.16 // indirect
43+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.16 // indirect
44+
github.com/aws/aws-sdk-go-v2/service/signin v1.0.4 // indirect
45+
github.com/aws/aws-sdk-go-v2/service/sso v1.30.7 // indirect
46+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.12 // indirect
47+
github.com/aws/aws-sdk-go-v2/service/sts v1.41.5 // indirect
4848
github.com/bep/godartsass/v2 v2.5.0 // indirect
4949
github.com/bep/golibsass v1.2.0 // indirect
5050
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
51+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5152
github.com/cli/browser v1.3.0 // indirect
5253
github.com/containerd/errdefs v1.0.0 // indirect
5354
github.com/containerd/errdefs/pkg v0.3.0 // indirect
@@ -82,7 +83,7 @@ require (
8283
github.com/jackc/pgx/v5 v5.7.4 // indirect
8384
github.com/jackc/puddle/v2 v2.2.2 // indirect
8485
github.com/jinzhu/inflection v1.0.0 // indirect
85-
github.com/klauspost/compress v1.18.1 // indirect
86+
github.com/klauspost/compress v1.18.2 // indirect
8687
github.com/lufia/plan9stats v0.0.0-20251013123823-9fd1530e3ec3 // indirect
8788
github.com/magiconair/properties v1.8.10 // indirect
8889
github.com/mattn/go-colorable v0.1.14 // indirect
@@ -95,7 +96,7 @@ require (
9596
github.com/moby/sys/user v0.4.0 // indirect
9697
github.com/moby/sys/userns v0.1.0 // indirect
9798
github.com/moby/term v0.5.2 // indirect
98-
github.com/morikuni/aec v1.0.0 // indirect
99+
github.com/morikuni/aec v1.1.0 // indirect
99100
github.com/natefinch/atomic v1.0.1 // indirect
100101
github.com/ncruces/go-strftime v0.1.9 // indirect
101102
github.com/opencontainers/go-digest v1.0.0 // indirect
@@ -112,7 +113,7 @@ require (
112113
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
113114
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
114115
github.com/riza-io/grpc-go v0.2.0 // indirect
115-
github.com/shirou/gopsutil/v4 v4.25.10 // indirect
116+
github.com/shirou/gopsutil/v4 v4.25.11 // indirect
116117
github.com/sirupsen/logrus v1.9.3 // indirect
117118
github.com/spf13/afero v1.14.0 // indirect
118119
github.com/spf13/cast v1.8.0 // indirect
@@ -127,22 +128,22 @@ require (
127128
github.com/wasilibs/wazero-helpers v0.0.0-20250123031827-cd30c44769bb // indirect
128129
github.com/yusufpapurcu/wmi v1.2.4 // indirect
129130
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
130-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect
131-
go.opentelemetry.io/otel v1.38.0 // indirect
131+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.64.0 // indirect
132+
go.opentelemetry.io/otel v1.39.0 // indirect
132133
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect
133-
go.opentelemetry.io/otel/metric v1.38.0 // indirect
134-
go.opentelemetry.io/otel/trace v1.38.0 // indirect
134+
go.opentelemetry.io/otel/metric v1.39.0 // indirect
135+
go.opentelemetry.io/otel/trace v1.39.0 // indirect
135136
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
136137
go.uber.org/atomic v1.11.0 // indirect
137138
go.uber.org/multierr v1.11.0 // indirect
138139
go.uber.org/zap v1.27.0 // indirect
139140
golang.org/x/exp v0.0.0-20250531010427-b6e5de432a8b // indirect
140-
golang.org/x/mod v0.29.0 // indirect
141+
golang.org/x/mod v0.30.0 // indirect
141142
golang.org/x/net v0.47.0 // indirect
142-
golang.org/x/sys v0.38.0 // indirect
143-
golang.org/x/telemetry v0.0.0-20251008203120-078029d740a8 // indirect
144-
golang.org/x/text v0.31.0 // indirect
145-
golang.org/x/tools v0.38.0 // indirect
143+
golang.org/x/sys v0.39.0 // indirect
144+
golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 // indirect
145+
golang.org/x/text v0.32.0 // indirect
146+
golang.org/x/tools v0.39.0 // indirect
146147
golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated // indirect
147148
golang.org/x/vuln v1.1.4 // indirect
148149
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7 // indirect

0 commit comments

Comments
 (0)