Skip to content

Commit 60df028

Browse files
fix(deps): update non-major deps
1 parent d66a927 commit 60df028

File tree

8 files changed

+58
-74
lines changed

8 files changed

+58
-74
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2121

2222
- name: install go
23-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
23+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2424
with:
2525
# use version from go.mod file
2626
go-version-file: 'go.mod'

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4545

4646
- name: install go
47-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
47+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
4848
with:
4949
# use version from go.mod file
5050
go-version-file: 'go.mod'
@@ -53,7 +53,7 @@ jobs:
5353

5454
# Initializes the CodeQL tools for scanning.
5555
- name: Initialize CodeQL
56-
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
56+
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
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@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
67+
uses: github/codeql-action/autobuild@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
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@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
81+
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2525

2626
- name: install go
27-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
27+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2828
with:
2929
# use version from go.mod file
3030
go-version-file: 'go.mod'
3131
cache: true
3232
check-latest: true
3333

3434
- name: run goreleaser
35-
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
35+
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
3636
with:
3737
distribution: goreleaser
3838
args: release --clean

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2424

2525
- name: install go
26-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
26+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2727
with:
2828
# use version from go.mod file
2929
go-version-file: 'go.mod'

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2121

2222
- name: install go
23-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
23+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2424
with:
2525
# use version from go.mod file
2626
go-version-file: 'go.mod'

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

go.mod

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ require (
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
12-
github.com/mattermost/mattermost/server/public v0.1.10
12+
github.com/mattermost/mattermost/server/public v0.1.11
1313
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
1414
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
17-
github.com/rs/zerolog v1.33.0
17+
github.com/rs/zerolog v1.34.0
1818
github.com/slack-go/slack v0.16.0
19-
github.com/spf13/viper v1.19.0
20-
google.golang.org/api v0.226.0
19+
github.com/spf13/viper v1.20.1
20+
google.golang.org/api v0.228.0
2121
)
2222

2323
require (
2424
cloud.google.com/go v0.119.0 // indirect
2525
cloud.google.com/go/auth v0.15.0 // indirect
26-
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
26+
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.1 // indirect
2929
dario.cat/mergo v1.0.1 // indirect
@@ -35,50 +35,47 @@ require (
3535
github.com/fatih/color v1.18.0 // indirect
3636
github.com/felixge/httpsnoop v1.0.4 // indirect
3737
github.com/francoispqt/gojay v1.2.13 // indirect
38-
github.com/fsnotify/fsnotify v1.7.0 // indirect
38+
github.com/fsnotify/fsnotify v1.8.0 // indirect
3939
github.com/go-asn1-ber/asn1-ber v1.5.7 // indirect
4040
github.com/go-logr/logr v1.4.2 // indirect
4141
github.com/go-logr/stdr v1.2.2 // indirect
42+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
4243
github.com/golang/protobuf v1.5.4 // indirect
4344
github.com/google/s2a-go v0.1.9 // indirect
4445
github.com/google/uuid v1.6.0 // indirect
45-
github.com/googleapis/enterprise-certificate-proxy v0.3.5 // indirect
46+
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
4647
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
4748
github.com/gorilla/websocket v1.5.3 // indirect
4849
github.com/hashicorp/errwrap v1.1.0 // indirect
4950
github.com/hashicorp/go-hclog v1.6.3 // indirect
5051
github.com/hashicorp/go-multierror v1.1.1 // indirect
5152
github.com/hashicorp/go-plugin v1.6.3 // indirect
52-
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
5555
github.com/klauspost/compress v1.17.11 // indirect
56-
github.com/magiconair/properties v1.8.7 // indirect
5756
github.com/mattermost/go-i18n v1.11.1-0.20211013152124-5c415071e404 // indirect
5857
github.com/mattermost/ldap v0.0.0-20231116144001-0f480c025956 // indirect
5958
github.com/mattermost/logr/v2 v2.0.21 // indirect
6059
github.com/mattn/go-colorable v0.1.14 // indirect
6160
github.com/mattn/go-isatty v0.0.20 // indirect
6261
github.com/mitchellh/copystructure v1.2.0 // indirect
63-
github.com/mitchellh/mapstructure v1.5.0 // indirect
6462
github.com/mitchellh/reflectwalk v1.0.2 // indirect
6563
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
6664
github.com/oklog/run v1.1.0 // indirect
6765
github.com/pborman/uuid v1.2.1 // indirect
6866
github.com/pelletier/go-toml v1.9.5 // indirect
69-
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
67+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
7068
github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c // indirect
7169
github.com/pkg/errors v0.9.1 // indirect
7270
github.com/prometheus/client_model v0.6.1 // indirect
7371
github.com/prometheus/common v0.62.0 // indirect
7472
github.com/prometheus/procfs v0.15.1 // indirect
75-
github.com/sagikazarmark/locafero v0.4.0 // indirect
76-
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
73+
github.com/sagikazarmark/locafero v0.7.0 // indirect
7774
github.com/shopspring/decimal v1.4.0 // indirect
7875
github.com/sourcegraph/conc v0.3.0 // indirect
79-
github.com/spf13/afero v1.11.0 // indirect
80-
github.com/spf13/cast v1.7.0 // indirect
81-
github.com/spf13/pflag v1.0.5 // indirect
76+
github.com/spf13/afero v1.12.0 // indirect
77+
github.com/spf13/cast v1.7.1 // indirect
78+
github.com/spf13/pflag v1.0.6 // indirect
8279
github.com/subosito/gotenv v1.6.0 // indirect
8380
github.com/tinylib/msgp v1.2.5 // indirect
8481
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
@@ -95,7 +92,7 @@ require (
9592
go.uber.org/atomic v1.9.0 // indirect
9693
go.uber.org/multierr v1.9.0 // indirect
9794
golang.org/x/crypto v0.36.0 // indirect
98-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
95+
golang.org/x/mod v0.22.0 // indirect
9996
golang.org/x/net v0.37.0 // indirect
10097
golang.org/x/oauth2 v0.28.0 // indirect
10198
golang.org/x/sync v0.12.0 // indirect
@@ -104,10 +101,9 @@ require (
104101
golang.org/x/time v0.11.0 // indirect
105102
google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb // indirect
106103
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
107-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
104+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
108105
google.golang.org/grpc v1.71.0 // indirect
109-
google.golang.org/protobuf v1.36.5 // indirect
110-
gopkg.in/ini.v1 v1.67.0 // indirect
106+
google.golang.org/protobuf v1.36.6 // indirect
111107
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
112108
gopkg.in/yaml.v2 v2.4.0 // indirect
113109
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)