Skip to content

Commit 70013f6

Browse files
committed
chore: bump dependencies
1 parent 8454ffe commit 70013f6

File tree

8 files changed

+173
-181
lines changed

8 files changed

+173
-181
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches: [ main, develop ]
99

1010
env:
11-
GO_VERSION: '1.23'
11+
GO_VERSION: '1.24'
1212
REGISTRY: ghcr.io
1313
IMAGE_NAME: ${{ github.repository }}
1414

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
types: [opened, synchronize, reopened]
77

88
env:
9-
GO_VERSION: '1.23'
9+
GO_VERSION: '1.24'
1010

1111
jobs:
1212
quick-checks:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2"
22

33
run:
44
timeout: 5m
5-
go: '1.23'
5+
go: '1.24'
66
modules-download-mode: readonly
77
allow-parallel-runners: true
88

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM golang:1.23-alpine AS builder
2+
FROM golang:1.24-alpine AS builder
33

44
# Set up build environment
55
ARG TARGETOS=linux

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,12 @@ check-updates: ## Check for dependency updates
7979
@echo "Checking for dependency updates..."
8080
go list -u -m all
8181

82+
# Update dependencies
83+
update-deps: ## Update all dependencies to latest versions
84+
@echo "Updating dependencies..."
85+
go get -u ./...
86+
go mod tidy
87+
@echo "Dependencies updated!"
88+
8289
# Full CI pipeline
8390
ci: deps fmt vet lint security test ## Run full CI pipeline

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
[![Go Version](https://img.shields.io/github/go-mod/go-version/mondu-ai/eks-pod-identity-webhook)](https://golang.org/)
44
[![License](https://img.shields.io/github/license/mondu-ai/eks-pod-identity-webhook)](LICENSE)
5-
[![Release](https://img.shields.io/github/v/release/mondu-ai/eks-pod-identity-webhook)](https://github.com/mondu-ai/eks-pod-identity-webhook/releases)
6-
[![Docker Pulls](https://img.shields.io/docker/pulls/mondu-ai/eks-pod-identity-webhook)](https://hub.docker.com/r/mondu-ai/eks-pod-identity-webhook)
5+
[![Container](https://img.shields.io/badge/container-ghcr.io-blue)](https://github.com/mondu-ai/eks-pod-identity-webhook/pkgs/container/eks-pod-identity-webhook)
76
[![Go Report Card](https://goreportcard.com/badge/github.com/mondu-ai/eks-pod-identity-webhook)](https://goreportcard.com/report/github.com/mondu-ai/eks-pod-identity-webhook)
87

98
A Kubernetes mutating admission webhook that enables pods running in non-EKS clusters (such as GKE, AKS, or on-premises) to seamlessly assume AWS IAM roles using the same patterns as EKS IAM Roles for Service Accounts (IRSA).

go.mod

Lines changed: 50 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,72 @@
11
module eks-iam-pod-identity-webhook
22

3-
go 1.21
3+
go 1.24.0
4+
5+
toolchain go1.24.3
46

57
require (
6-
github.com/gin-gonic/gin v1.9.1
7-
github.com/stretchr/testify v1.8.4
8-
k8s.io/api v0.28.3
9-
k8s.io/apimachinery v0.28.3
10-
k8s.io/client-go v0.28.3
8+
github.com/gin-gonic/gin v1.10.1
9+
github.com/stretchr/testify v1.10.0
10+
k8s.io/api v0.33.1
11+
k8s.io/apimachinery v0.33.1
12+
k8s.io/client-go v0.33.1
1113
)
1214

1315
require (
14-
github.com/bytedance/sonic v1.9.1 // indirect
15-
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
16+
github.com/bytedance/sonic v1.13.3 // indirect
17+
github.com/bytedance/sonic/loader v0.2.4 // indirect
18+
github.com/cloudwego/base64x v0.1.5 // indirect
1619
github.com/davecgh/go-spew v1.1.1 // indirect
17-
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
18-
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
19-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
20-
github.com/gin-contrib/sse v0.1.0 // indirect
21-
github.com/go-logr/logr v1.2.4 // indirect
22-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
23-
github.com/go-openapi/jsonreference v0.20.2 // indirect
24-
github.com/go-openapi/swag v0.22.3 // indirect
20+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
21+
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
22+
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
23+
github.com/gin-contrib/sse v1.1.0 // indirect
24+
github.com/go-logr/logr v1.4.3 // indirect
25+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
26+
github.com/go-openapi/jsonreference v0.21.0 // indirect
27+
github.com/go-openapi/swag v0.23.1 // indirect
2528
github.com/go-playground/locales v0.14.1 // indirect
2629
github.com/go-playground/universal-translator v0.18.1 // indirect
27-
github.com/go-playground/validator/v10 v10.14.0 // indirect
28-
github.com/goccy/go-json v0.10.2 // indirect
30+
github.com/go-playground/validator/v10 v10.26.0 // indirect
31+
github.com/goccy/go-json v0.10.5 // indirect
2932
github.com/gogo/protobuf v1.3.2 // indirect
30-
github.com/golang/protobuf v1.5.3 // indirect
31-
github.com/google/gnostic-models v0.6.8 // indirect
32-
github.com/google/go-cmp v0.5.9 // indirect
33-
github.com/google/gofuzz v1.2.0 // indirect
34-
github.com/google/uuid v1.3.0 // indirect
35-
github.com/imdario/mergo v0.3.6 // indirect
33+
github.com/google/gnostic-models v0.6.9 // indirect
34+
github.com/google/go-cmp v0.7.0 // indirect
35+
github.com/google/uuid v1.6.0 // indirect
3636
github.com/josharian/intern v1.0.0 // indirect
3737
github.com/json-iterator/go v1.1.12 // indirect
38-
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
39-
github.com/leodido/go-urn v1.2.4 // indirect
40-
github.com/mailru/easyjson v0.7.7 // indirect
41-
github.com/mattn/go-isatty v0.0.19 // indirect
38+
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
39+
github.com/leodido/go-urn v1.4.0 // indirect
40+
github.com/mailru/easyjson v0.9.0 // indirect
41+
github.com/mattn/go-isatty v0.0.20 // indirect
4242
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4343
github.com/modern-go/reflect2 v1.0.2 // indirect
4444
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
45-
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
45+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
4646
github.com/pkg/errors v0.9.1 // indirect
4747
github.com/pmezard/go-difflib v1.0.0 // indirect
48-
github.com/spf13/pflag v1.0.5 // indirect
49-
github.com/stretchr/objx v0.5.0 // indirect
48+
github.com/spf13/pflag v1.0.6 // indirect
49+
github.com/stretchr/objx v0.5.2 // indirect
5050
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
51-
github.com/ugorji/go/codec v1.2.11 // indirect
52-
golang.org/x/arch v0.3.0 // indirect
53-
golang.org/x/crypto v0.14.0 // indirect
54-
golang.org/x/net v0.17.0 // indirect
55-
golang.org/x/oauth2 v0.8.0 // indirect
56-
golang.org/x/sys v0.13.0 // indirect
57-
golang.org/x/term v0.13.0 // indirect
58-
golang.org/x/text v0.13.0 // indirect
59-
golang.org/x/time v0.3.0 // indirect
60-
google.golang.org/appengine v1.6.7 // indirect
61-
google.golang.org/protobuf v1.31.0 // indirect
51+
github.com/ugorji/go/codec v1.2.14 // indirect
52+
github.com/x448/float16 v0.8.4 // indirect
53+
golang.org/x/arch v0.18.0 // indirect
54+
golang.org/x/crypto v0.39.0 // indirect
55+
golang.org/x/net v0.41.0 // indirect
56+
golang.org/x/oauth2 v0.30.0 // indirect
57+
golang.org/x/sys v0.33.0 // indirect
58+
golang.org/x/term v0.32.0 // indirect
59+
golang.org/x/text v0.26.0 // indirect
60+
golang.org/x/time v0.12.0 // indirect
61+
google.golang.org/protobuf v1.36.6 // indirect
62+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
6263
gopkg.in/inf.v0 v0.9.1 // indirect
63-
gopkg.in/yaml.v2 v2.4.0 // indirect
6464
gopkg.in/yaml.v3 v3.0.1 // indirect
65-
k8s.io/klog/v2 v2.100.1 // indirect
66-
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
67-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
68-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
69-
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect
70-
sigs.k8s.io/yaml v1.3.0 // indirect
65+
k8s.io/klog/v2 v2.130.1 // indirect
66+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
67+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
68+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
69+
sigs.k8s.io/randfill v1.0.0 // indirect
70+
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
71+
sigs.k8s.io/yaml v1.4.0 // indirect
7172
)

0 commit comments

Comments
 (0)