Skip to content

Commit 5f3bad3

Browse files
fix(deps): update non-major deps
1 parent 3d97734 commit 5f3bad3

File tree

11 files changed

+68
-68
lines changed

11 files changed

+68
-68
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@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
56+
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
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@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
67+
uses: github/codeql-action/autobuild@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
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@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
81+
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10

.github/workflows/publish_latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2020

2121
- name: Set up QEMU
22-
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3.4.0
22+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
2323
with:
2424
platforms: 'arm64'
2525

2626
- name: Set up Docker Buildx
27-
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9.0
27+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
2828

2929
- name: build and push docker images
3030
env:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
check-latest: true
3333

3434
- name: run goreleaser
35-
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
35+
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
3636
with:
3737
distribution: goreleaser
3838
args: release --clean
@@ -47,12 +47,12 @@ jobs:
4747
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
4848

4949
- name: Set up QEMU
50-
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3.4.0
50+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
5151
with:
5252
platforms: 'arm64'
5353

5454
- name: Set up Docker Buildx
55-
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9.0
55+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
5656

5757
- name: build and push docker images
5858
env:

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 := "v1.63.4"
8+
GOLANGCI_LINT_VERSION := "v1.64.6"
99
PACKAGES := $(shell go list ./... | grep -v /config-example/)
1010
PLATFORM := "linux/amd64,linux/arm64"
1111

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.6-alpine@sha256:2c49857f2295e89b23b28386e57e018a86620a8fede5003900f2d138ba9c4037 AS build
1+
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.0-alpine@sha256:2d40d4fc278dad38be0777d5e2a88a2c6dee51b0b29c97a764fc6c6a11ca893c AS build
22

33
ARG TARGETOS
44
ARG TARGETARCH
@@ -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/alpine:3.21.2@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
22+
FROM docker.io/alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
2323

2424
ENV USERNAME=flottbot
2525
ENV GROUP=flottbot

docker/Dockerfile.golang

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.6-alpine@sha256:2c49857f2295e89b23b28386e57e018a86620a8fede5003900f2d138ba9c4037 AS build
1+
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.0-alpine@sha256:2d40d4fc278dad38be0777d5e2a88a2c6dee51b0b29c97a764fc6c6a11ca893c AS build
22

33
ARG TARGETOS
44
ARG TARGETARCH
@@ -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/golang:1.23.6-alpine@sha256:2c49857f2295e89b23b28386e57e018a86620a8fede5003900f2d138ba9c4037
22+
FROM docker.io/golang:1.24.0-alpine@sha256:2d40d4fc278dad38be0777d5e2a88a2c6dee51b0b29c97a764fc6c6a11ca893c
2323

2424
ENV USERNAME=flottbot
2525
ENV GROUP=flottbot

docker/Dockerfile.python

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.6-alpine@sha256:2c49857f2295e89b23b28386e57e018a86620a8fede5003900f2d138ba9c4037 AS build
1+
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.0-alpine@sha256:2d40d4fc278dad38be0777d5e2a88a2c6dee51b0b29c97a764fc6c6a11ca893c AS build
22

33
ARG TARGETOS
44
ARG TARGETARCH
@@ -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:bb2c06f24622d10187d0884b5b0a66426a9c8511c344492ed61b5d382bd6018c
22+
FROM docker.io/python:3.13.2-alpine@sha256:323a717dc4a010fee21e3f1aac738ee10bb485de4e7593ce242b36ee48d6b352
2323

2424
ENV USERNAME=flottbot
2525
ENV GROUP=flottbot

docker/Dockerfile.ruby

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.6-alpine@sha256:2c49857f2295e89b23b28386e57e018a86620a8fede5003900f2d138ba9c4037 AS build
1+
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.0-alpine@sha256:2d40d4fc278dad38be0777d5e2a88a2c6dee51b0b29c97a764fc6c6a11ca893c AS build
22

33
ARG TARGETOS
44
ARG TARGETARCH
@@ -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.1-alpine@sha256:e5c30595c6a322bc3fbaacd5e35d698a6b9e6d1079ab0af09ffe52f5816aec3b
22+
FROM docker.io/ruby:3.4.2-alpine@sha256:cb6a5cb7303314946b75fa64c96d8116f838b8495ffa161610bd6aaaf9a70121
2323

2424
ENV USERNAME=flottbot
2525
ENV GROUP=flottbot

go.mod

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ require (
1111
github.com/gorilla/mux v1.8.1
1212
github.com/mattermost/mattermost/server/public v0.1.10
1313
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
14-
github.com/prometheus/client_golang v1.20.5
14+
github.com/prometheus/client_golang v1.21.1
1515
github.com/robfig/cron/v3 v3.0.1
1616
github.com/rs/xid v1.6.0
1717
github.com/rs/zerolog v1.33.0
1818
github.com/slack-go/slack v0.16.0
1919
github.com/spf13/viper v1.19.0
20-
google.golang.org/api v0.220.0
20+
google.golang.org/api v0.223.0
2121
)
2222

2323
require (
2424
cloud.google.com/go v0.118.1 // indirect
25-
cloud.google.com/go/auth v0.14.1 // indirect
25+
cloud.google.com/go/auth v0.15.0 // indirect
2626
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
2727
cloud.google.com/go/compute/metadata v0.6.0 // indirect
2828
cloud.google.com/go/iam v1.3.1 // indirect
@@ -52,7 +52,7 @@ require (
5252
github.com/hashicorp/hcl v1.0.0 // 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.9 // indirect
55+
github.com/klauspost/compress v1.17.11 // indirect
5656
github.com/magiconair/properties v1.8.7 // indirect
5757
github.com/mattermost/go-i18n v1.11.1-0.20211013152124-5c415071e404 // indirect
5858
github.com/mattermost/ldap v0.0.0-20231116144001-0f480c025956 // indirect
@@ -70,7 +70,7 @@ require (
7070
github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c // indirect
7171
github.com/pkg/errors v0.9.1 // indirect
7272
github.com/prometheus/client_model v0.6.1 // indirect
73-
github.com/prometheus/common v0.55.0 // indirect
73+
github.com/prometheus/common v0.62.0 // indirect
7474
github.com/prometheus/procfs v0.15.1 // indirect
7575
github.com/sagikazarmark/locafero v0.4.0 // indirect
7676
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
@@ -87,26 +87,26 @@ require (
8787
github.com/wiggin77/srslog v1.0.1 // indirect
8888
go.opencensus.io v0.24.0 // indirect
8989
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
90-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect
91-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
90+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
91+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
9292
go.opentelemetry.io/otel v1.34.0 // indirect
9393
go.opentelemetry.io/otel/metric v1.34.0 // indirect
9494
go.opentelemetry.io/otel/trace v1.34.0 // indirect
9595
go.uber.org/atomic v1.9.0 // indirect
9696
go.uber.org/multierr v1.9.0 // indirect
97-
golang.org/x/crypto v0.32.0 // indirect
97+
golang.org/x/crypto v0.33.0 // indirect
9898
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
99-
golang.org/x/net v0.34.0 // indirect
100-
golang.org/x/oauth2 v0.25.0 // indirect
101-
golang.org/x/sync v0.10.0 // indirect
102-
golang.org/x/sys v0.29.0 // indirect
103-
golang.org/x/text v0.21.0 // indirect
104-
golang.org/x/time v0.9.0 // indirect
99+
golang.org/x/net v0.35.0 // indirect
100+
golang.org/x/oauth2 v0.26.0 // indirect
101+
golang.org/x/sync v0.11.0 // indirect
102+
golang.org/x/sys v0.30.0 // indirect
103+
golang.org/x/text v0.22.0 // indirect
104+
golang.org/x/time v0.10.0 // indirect
105105
google.golang.org/genproto v0.0.0-20250122153221-138b5a5a4fd4 // indirect
106106
google.golang.org/genproto/googleapis/api v0.0.0-20250124145028-65684f501c47 // indirect
107-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250127172529-29210b9bc287 // indirect
107+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
108108
google.golang.org/grpc v1.70.0 // indirect
109-
google.golang.org/protobuf v1.36.4 // indirect
109+
google.golang.org/protobuf v1.36.5 // indirect
110110
gopkg.in/ini.v1 v1.67.0 // indirect
111111
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
112112
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)