Skip to content

Commit c34f759

Browse files
authored
Dependency bump (#546)
* fix: dependency updates * fix: bump go version and dependencies in ci * fix: bump goreleaser version in ci * fix: remove cosign as it is unsupported by quay
1 parent 4f148f2 commit c34f759

File tree

5 files changed

+86
-91
lines changed

5 files changed

+86
-91
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ references:
3434
jobs:
3535
test:
3636
docker:
37-
- image: cimg/go:1.22
37+
- image: cimg/go:1.24
3838
working_directory: /home/circleci/go/src/github.com/fairwindsops/rbac-manager
3939
steps:
4040
- checkout
4141
- run: go test ./... -coverprofile=coverage.txt -covermode=atomic
4242

4343
lint:
4444
docker:
45-
- image: golangci/golangci-lint:v1.59.1
45+
- image: golangci/golangci-lint:v1.64.8
4646
steps:
4747
- checkout
4848
- run: golangci-lint run --timeout=10m -v
@@ -52,7 +52,7 @@ jobs:
5252
resource_class: large
5353
shell: /bin/bash
5454
docker:
55-
- image: goreleaser/goreleaser:v2.0.1
55+
- image: goreleaser/goreleaser:v2.10.2
5656
environment:
5757
GO111MODULE: "on"
5858
steps:
@@ -70,7 +70,7 @@ jobs:
7070
working_directory: /home/circleci/go/src/github.com/fairwindsops/rbac-manager
7171
resource_class: large
7272
docker:
73-
- image: goreleaser/goreleaser:v2.0.1
73+
- image: goreleaser/goreleaser:v2.10.2
7474
steps:
7575
- checkout
7676
- setup_remote_docker

.goreleaser.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1+
version: 2
12
release:
23
prerelease: auto
3-
footer: |
4-
You can verify the signatures of both the checksums.txt file and the published docker images using [cosign](https://github.com/sigstore/cosign).
5-
6-
```
7-
cosign verify-blob checksums.txt --signature=checksums.txt.sig --key https://artifacts.fairwinds.com/cosign.pub
8-
```
94
builds:
105
- main: ./cmd/manager
116
ldflags:
@@ -22,10 +17,6 @@ builds:
2217
goarm:
2318
- 6
2419
- 7
25-
signs:
26-
- cmd: cosign
27-
args: ["sign-blob", "--key=hashivault://cosign", "-output-signature=${signature}", "${artifact}", "--yes"]
28-
artifacts: checksum
2920
dockers:
3021
- image_templates:
3122
- "quay.io/reactiveops/rbac-manager:{{ .FullCommit }}-amd64"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.20
1+
FROM alpine:3.22
22

33
# 'nobody' user in alpine
44
USER 65534

go.mod

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module github.com/fairwindsops/rbac-manager
22

3-
go 1.22.0
3+
go 1.23.0
44

5-
toolchain go1.22.4
5+
toolchain go1.24.5
66

77
require (
8-
github.com/prometheus/client_golang v1.19.1
8+
github.com/prometheus/client_golang v1.23.0
99
github.com/sirupsen/logrus v1.9.3
10-
github.com/stretchr/testify v1.9.0
10+
github.com/stretchr/testify v1.10.0
1111
k8s.io/api v0.30.2
1212
k8s.io/apimachinery v0.30.2
1313
k8s.io/client-go v0.30.2
@@ -19,43 +19,43 @@ require (
1919
github.com/beorn7/perks v1.0.1 // indirect
2020
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2121
github.com/davecgh/go-spew v1.1.1 // indirect
22-
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
22+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
2323
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
24-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
25-
github.com/fsnotify/fsnotify v1.7.0 // indirect
26-
github.com/go-logr/logr v1.4.2 // indirect
27-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
24+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
25+
github.com/fsnotify/fsnotify v1.9.0 // indirect
26+
github.com/go-logr/logr v1.4.3 // indirect
27+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
2828
github.com/go-openapi/jsonreference v0.21.0 // indirect
29-
github.com/go-openapi/swag v0.23.0 // indirect
29+
github.com/go-openapi/swag v0.23.1 // indirect
3030
github.com/gogo/protobuf v1.3.2 // indirect
31-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
31+
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
3232
github.com/golang/protobuf v1.5.4 // indirect
3333
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
34-
github.com/google/go-cmp v0.6.0 // indirect
34+
github.com/google/go-cmp v0.7.0 // indirect
3535
github.com/google/gofuzz v1.2.0 // indirect
3636
github.com/google/uuid v1.6.0 // indirect
3737
github.com/imdario/mergo v0.3.16 // indirect
3838
github.com/josharian/intern v1.0.0 // indirect
3939
github.com/json-iterator/go v1.1.12 // indirect
40-
github.com/mailru/easyjson v0.7.7 // indirect
40+
github.com/mailru/easyjson v0.9.0 // indirect
4141
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4242
github.com/modern-go/reflect2 v1.0.2 // indirect
4343
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4444
github.com/pkg/errors v0.9.1 // indirect
4545
github.com/pmezard/go-difflib v1.0.0 // indirect
46-
github.com/prometheus/client_model v0.6.1 // indirect
47-
github.com/prometheus/common v0.55.0 // indirect
48-
github.com/prometheus/procfs v0.15.1 // indirect
49-
github.com/spf13/pflag v1.0.5 // indirect
50-
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
51-
golang.org/x/net v0.26.0 // indirect
52-
golang.org/x/oauth2 v0.21.0 // indirect
53-
golang.org/x/sys v0.21.0 // indirect
54-
golang.org/x/term v0.21.0 // indirect
55-
golang.org/x/text v0.16.0 // indirect
56-
golang.org/x/time v0.5.0 // indirect
57-
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
58-
google.golang.org/protobuf v1.34.2 // indirect
46+
github.com/prometheus/client_model v0.6.2 // indirect
47+
github.com/prometheus/common v0.65.0 // indirect
48+
github.com/prometheus/procfs v0.16.1 // indirect
49+
github.com/spf13/pflag v1.0.7 // indirect
50+
golang.org/x/exp v0.0.0-20250718183923-645b1fa84792 // indirect
51+
golang.org/x/net v0.40.0 // indirect
52+
golang.org/x/oauth2 v0.30.0 // indirect
53+
golang.org/x/sys v0.34.0 // indirect
54+
golang.org/x/term v0.32.0 // indirect
55+
golang.org/x/text v0.25.0 // indirect
56+
golang.org/x/time v0.12.0 // indirect
57+
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
58+
google.golang.org/protobuf v1.36.6 // indirect
5959
gopkg.in/inf.v0 v0.9.1 // indirect
6060
gopkg.in/yaml.v2 v2.4.0 // indirect
6161
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)