Skip to content

Commit 4653948

Browse files
committed
go.mod: update modules
1 parent 3aec0fc commit 4653948

File tree

5 files changed

+140
-155
lines changed

5 files changed

+140
-155
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,6 @@ jobs:
6262
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0
6363
- name: Sign the published Docker image
6464
if: github.event_name == 'push'
65+
env:
66+
COSIGN_YES: "true"
6567
run: cosign sign ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# minimum go version that works. This is not necessarily supported in
2323
# any way, and will be bumped up without notice as needed. But it at
2424
# least lets us know what go version should work.
25-
- go-version: 1.18
25+
- go-version: 1.21
2626
platform: ubuntu-latest
2727

2828
# include windows, but only with the latest Go version, since there

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM --platform=$BUILDPLATFORM cgr.dev/chainguard/wolfi-base as build
33
LABEL maintainer="Will Norris <[email protected]>"
44

5-
RUN apk update && apk add build-base git openssh go-1.20
5+
RUN apk update && apk add build-base git openssh go-1.21
66

77
WORKDIR /app
88
COPY go.mod go.sum ./

go.mod

Lines changed: 41 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
module willnorris.com/go/imageproxy
22

3-
go 1.18
3+
go 1.21
44

55
require (
6-
cloud.google.com/go/storage v1.31.0
6+
cloud.google.com/go/storage v1.40.0
77
github.com/PaulARoy/azurestoragecache v0.0.0-20170906084534-3c249a3ba788
8-
github.com/aws/aws-sdk-go v1.44.314
8+
github.com/aws/aws-sdk-go v1.52.5
99
github.com/die-net/lrucache v0.0.0-20220628165024-20a71bc65bf1
1010
github.com/disintegration/imaging v1.6.2
1111
github.com/fcjr/aia-transport-go v1.2.2
12-
github.com/gomodule/redigo v1.8.9
12+
github.com/gomodule/redigo v1.9.2
1313
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
1414
github.com/muesli/smartcrop v0.3.0
1515
github.com/peterbourgon/diskv v0.0.0-20171120014656-2973218375c3
16-
github.com/prometheus/client_golang v1.16.0
16+
github.com/prometheus/client_golang v1.19.0
1717
github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd
18-
golang.org/x/image v0.10.0
18+
golang.org/x/image v0.16.0
1919
willnorris.com/go/gifresize v1.0.0
2020
)
2121

2222
require (
23-
cloud.google.com/go v0.110.7 // indirect
24-
cloud.google.com/go/compute v1.23.0 // indirect
25-
cloud.google.com/go/compute/metadata v0.2.3 // indirect
26-
cloud.google.com/go/iam v1.1.1 // indirect
23+
cloud.google.com/go v0.113.0 // indirect
24+
cloud.google.com/go/auth v0.4.0 // indirect
25+
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
26+
cloud.google.com/go/compute/metadata v0.3.0 // indirect
27+
cloud.google.com/go/iam v1.1.8 // indirect
2728
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
2829
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
2930
github.com/Azure/go-autorest/autorest v0.11.29 // indirect
@@ -33,38 +34,43 @@ require (
3334
github.com/Azure/go-autorest/logger v0.2.1 // indirect
3435
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
3536
github.com/beorn7/perks v1.0.1 // indirect
36-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
37+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3738
github.com/dnaeon/go-vcr v1.2.0 // indirect
39+
github.com/felixge/httpsnoop v1.0.4 // indirect
40+
github.com/go-logr/logr v1.4.1 // indirect
41+
github.com/go-logr/stdr v1.2.2 // indirect
3842
github.com/gofrs/uuid v4.4.0+incompatible // indirect
3943
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
4044
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
41-
github.com/golang/protobuf v1.5.3 // indirect
45+
github.com/golang/protobuf v1.5.4 // indirect
4246
github.com/google/btree v1.1.2 // indirect
43-
github.com/google/go-cmp v0.5.9 // indirect
44-
github.com/google/s2a-go v0.1.4 // indirect
45-
github.com/google/uuid v1.3.0 // indirect
46-
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
47-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
47+
github.com/google/s2a-go v0.1.7 // indirect
48+
github.com/google/uuid v1.6.0 // indirect
49+
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
50+
github.com/googleapis/gax-go/v2 v2.12.4 // indirect
4851
github.com/jmespath/go-jmespath v0.4.0 // indirect
4952
github.com/kr/text v0.2.0 // indirect
50-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
5153
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
52-
github.com/prometheus/client_model v0.4.0 // indirect
53-
github.com/prometheus/common v0.44.0 // indirect
54-
github.com/prometheus/procfs v0.11.1 // indirect
54+
github.com/prometheus/client_model v0.6.1 // indirect
55+
github.com/prometheus/common v0.53.0 // indirect
56+
github.com/prometheus/procfs v0.14.0 // indirect
5557
go.opencensus.io v0.24.0 // indirect
56-
golang.org/x/crypto v0.11.0 // indirect
57-
golang.org/x/net v0.13.0 // indirect
58-
golang.org/x/oauth2 v0.10.0 // indirect
59-
golang.org/x/sync v0.3.0 // indirect
60-
golang.org/x/sys v0.10.0 // indirect
61-
golang.org/x/text v0.11.0 // indirect
62-
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
63-
google.golang.org/api v0.134.0 // indirect
64-
google.golang.org/appengine v1.6.7 // indirect
65-
google.golang.org/genproto v0.0.0-20230731193218-e0aa005b6bdf // indirect
66-
google.golang.org/genproto/googleapis/api v0.0.0-20230731193218-e0aa005b6bdf // indirect
67-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230731193218-e0aa005b6bdf // indirect
68-
google.golang.org/grpc v1.57.0 // indirect
69-
google.golang.org/protobuf v1.31.0 // indirect
58+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.51.0 // indirect
59+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 // indirect
60+
go.opentelemetry.io/otel v1.26.0 // indirect
61+
go.opentelemetry.io/otel/metric v1.26.0 // indirect
62+
go.opentelemetry.io/otel/trace v1.26.0 // indirect
63+
golang.org/x/crypto v0.23.0 // indirect
64+
golang.org/x/net v0.25.0 // indirect
65+
golang.org/x/oauth2 v0.20.0 // indirect
66+
golang.org/x/sync v0.7.0 // indirect
67+
golang.org/x/sys v0.20.0 // indirect
68+
golang.org/x/text v0.15.0 // indirect
69+
golang.org/x/time v0.5.0 // indirect
70+
google.golang.org/api v0.178.0 // indirect
71+
google.golang.org/genproto v0.0.0-20240506185236-b8a5c65736ae // indirect
72+
google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae // indirect
73+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240506185236-b8a5c65736ae // indirect
74+
google.golang.org/grpc v1.63.2 // indirect
75+
google.golang.org/protobuf v1.34.1 // indirect
7076
)

0 commit comments

Comments
 (0)