Skip to content

Commit 527afef

Browse files
fix(deps): update non-major deps
1 parent dfa2fa3 commit 527afef

File tree

6 files changed

+52
-53
lines changed

6 files changed

+52
-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/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
56+
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
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/autobuild@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
67+
uses: github/codeql-action/autobuild@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
6868

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

8080
- name: Perform CodeQL Analysis
81-
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
81+
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GOARCH := $(shell go env GOARCH)
55
GOOS := $(shell go env GOOS)
66
BUILD_LDFLAGS := -s -w
77
BUILD_LDFLAGS += -X github.com/target/flottbot/version.Version=${VERSION}
8-
GOLANGCI_LINT_VERSION := "v2.0.2"
8+
GOLANGCI_LINT_VERSION := "v2.1.2"
99
PACKAGES := $(shell go list ./... | grep -v /config-example/)
1010
PLATFORM := "linux/amd64,linux/arm64"
1111

docker/Dockerfile.python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
1919
go build -a -ldflags "-s -w -X github.com/target/flottbot/version.Version=${VERSION}" \
2020
-o flottbot ./cmd/flottbot
2121

22-
FROM docker.io/python:3.13.2-alpine@sha256:323a717dc4a010fee21e3f1aac738ee10bb485de4e7593ce242b36ee48d6b352
22+
FROM docker.io/python:3.13.3-alpine@sha256:18159b2be11db91f84b8f8f655cd860f805dbd9e49a583ddaac8ab39bf4fe1a7
2323

2424
ENV USERNAME=flottbot
2525
ENV GROUP=flottbot

docker/Dockerfile.ruby

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
1919
go build -a -ldflags "-s -w -X github.com/target/flottbot/version.Version=${VERSION}" \
2020
-o flottbot ./cmd/flottbot
2121

22-
FROM docker.io/ruby:3.4.2-alpine@sha256:cb6a5cb7303314946b75fa64c96d8116f838b8495ffa161610bd6aaaf9a70121
22+
FROM docker.io/ruby:3.4.3-alpine@sha256:c9956b1836f8c3f4fc4724e435baa037e55d32b302406742dfd5dcaadf7a4bb1
2323

2424
ENV USERNAME=flottbot
2525
ENV GROUP=flottbot

go.mod

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ module github.com/target/flottbot
33
go 1.23.6
44

55
require (
6-
cloud.google.com/go/pubsub v1.48.1
6+
cloud.google.com/go/pubsub v1.49.0
77
github.com/Masterminds/semver/v3 v3.3.1
88
github.com/Masterminds/sprig/v3 v3.3.0
99
github.com/bwmarrin/discordgo v0.28.1
1010
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
1111
github.com/gorilla/mux v1.8.1
1212
github.com/mattermost/mattermost/server/public v0.1.11
1313
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
14-
github.com/prometheus/client_golang v1.21.1
14+
github.com/prometheus/client_golang v1.22.0
1515
github.com/robfig/cron/v3 v3.0.1
1616
github.com/rs/xid v1.6.0
1717
github.com/rs/zerolog v1.34.0
1818
github.com/slack-go/slack v0.16.0
1919
github.com/spf13/viper v1.20.1
20-
google.golang.org/api v0.228.0
20+
google.golang.org/api v0.229.0
2121
)
2222

2323
require (
2424
cloud.google.com/go v0.120.0 // indirect
25-
cloud.google.com/go/auth v0.15.0 // indirect
25+
cloud.google.com/go/auth v0.16.0 // indirect
2626
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
2727
cloud.google.com/go/compute/metadata v0.6.0 // indirect
2828
cloud.google.com/go/iam v1.4.2 // indirect
@@ -52,7 +52,6 @@ require (
5252
github.com/hashicorp/go-plugin v1.6.3 // indirect
5353
github.com/hashicorp/yamux v0.1.2 // indirect
5454
github.com/huandu/xstrings v1.5.0 // indirect
55-
github.com/klauspost/compress v1.17.11 // indirect
5655
github.com/mattermost/go-i18n v1.11.1-0.20211013152124-5c415071e404 // indirect
5756
github.com/mattermost/ldap v0.0.0-20231116144001-0f480c025956 // indirect
5857
github.com/mattermost/logr/v2 v2.0.21 // indirect
@@ -84,25 +83,25 @@ require (
8483
github.com/wiggin77/srslog v1.0.1 // indirect
8584
go.opencensus.io v0.24.0 // indirect
8685
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
87-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
88-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
86+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
87+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
8988
go.opentelemetry.io/otel v1.35.0 // indirect
9089
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9190
go.opentelemetry.io/otel/trace v1.35.0 // indirect
9291
go.uber.org/atomic v1.9.0 // indirect
9392
go.uber.org/multierr v1.9.0 // indirect
94-
golang.org/x/crypto v0.36.0 // indirect
93+
golang.org/x/crypto v0.37.0 // indirect
9594
golang.org/x/mod v0.22.0 // indirect
96-
golang.org/x/net v0.37.0 // indirect
97-
golang.org/x/oauth2 v0.28.0 // indirect
98-
golang.org/x/sync v0.12.0 // indirect
99-
golang.org/x/sys v0.31.0 // indirect
100-
golang.org/x/text v0.23.0 // indirect
95+
golang.org/x/net v0.39.0 // indirect
96+
golang.org/x/oauth2 v0.29.0 // indirect
97+
golang.org/x/sync v0.13.0 // indirect
98+
golang.org/x/sys v0.32.0 // indirect
99+
golang.org/x/text v0.24.0 // indirect
101100
golang.org/x/time v0.11.0 // indirect
102101
google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb // indirect
103102
google.golang.org/genproto/googleapis/api v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
104-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
105-
google.golang.org/grpc v1.71.0 // indirect
103+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250414145226-207652e42e2e // indirect
104+
google.golang.org/grpc v1.71.1 // indirect
106105
google.golang.org/protobuf v1.36.6 // indirect
107106
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
108107
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)