Skip to content

Commit 9753505

Browse files
fix(deps): update all non-major dependencies
1 parent cbf1e3a commit 9753505

File tree

10 files changed

+135
-125
lines changed

10 files changed

+135
-125
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: clone
15-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616

1717
- name: install go
18-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
18+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
1919
with:
2020
# use version from go.mod file
2121
go-version-file: 'go.mod'

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
38+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
42+
uses: github/codeql-action/init@45580472a5bb82c4681c4ac726cfdb60060c2ee1 # v3.32.4
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
53+
uses: github/codeql-action/autobuild@45580472a5bb82c4681c4ac726cfdb60060c2ee1 # v3.32.4
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,5 +64,5 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
67+
uses: github/codeql-action/analyze@45580472a5bb82c4681c4ac726cfdb60060c2ee1 # v3.32.4
6868

.github/workflows/prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: clone
16-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1717
with:
1818
# ensures we fetch tag history for the repository
1919
fetch-depth: 0
2020

2121
- name: install go
22-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
22+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
2323
with:
2424
# use version from go.mod file
2525
go-version-file: 'go.mod'

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: clone
15-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616
with:
1717
# ensures we fetch tag history for the repository
1818
fetch-depth: 0
1919

2020
- name: install go
21-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
21+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
2222
with:
2323
# use version from go.mod file
2424
go-version-file: 'go.mod'
@@ -33,7 +33,7 @@ jobs:
3333
make build-static-ci
3434
3535
- name: publish
36-
uses: elgohr/Publish-Docker-Github-Action@eb53b3ec07136a6ebaed78d8135806da64f7c7e2 # v5
36+
uses: elgohr/Publish-Docker-Github-Action@4feac4d53e4e55dcc5d3e2ad0ed2e0a76028ff7a # v5
3737
with:
3838
name: target/vela-artifactory
3939
cache: true

.github/workflows/reviewdog.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: clone
22-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
2323

2424
- name: install go
25-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
25+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
2626
with:
2727
# use version from go.mod file
2828
go-version-file: 'go.mod'
@@ -47,10 +47,10 @@ jobs:
4747

4848
steps:
4949
- name: clone
50-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
50+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
5151

5252
- name: install go
53-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
53+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
5454
with:
5555
# use version from go.mod file
5656
go-version-file: 'go.mod'

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: clone
15-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616

1717
- name: install go
18-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
18+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
1919
with:
2020
# use version from go.mod file
2121
go-version-file: 'go.mod'
@@ -27,7 +27,7 @@ jobs:
2727
go test -covermode=atomic -coverprofile=coverage.out ./...
2828
2929
- name: coverage
30-
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
30+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
3131
with:
3232
token: ${{ secrets.CODECOV_TOKEN }}
3333
file: coverage.out

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: clone
15-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616

1717
- name: install go
18-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
18+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
1919
with:
2020
# use version from go.mod file
2121
go-version-file: 'go.mod'

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## docker build --no-cache --target binary -t vela-artifactory:binary . ##
55
################################################################################
66

7-
FROM alpine:3.22.1@sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1 as binary
7+
FROM alpine:3.23.3@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 as binary
88

99
ARG JFROG_VERSION=1.33.2
1010

@@ -17,7 +17,7 @@ RUN chmod -R 777 /tmp
1717
## docker build --no-cache --target certs -t vela-artifactory:certs . ##
1818
##############################################################################
1919

20-
FROM alpine:3.22.1@sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1 as certs
20+
FROM alpine:3.23.3@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 as certs
2121

2222
RUN apk add --update --no-cache ca-certificates
2323

go.mod

Lines changed: 35 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,52 @@
11
module github.com/go-vela/vela-artifactory
22

3-
go 1.24.5
3+
go 1.25.5
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.3.1
6+
github.com/Masterminds/semver/v3 v3.4.0
77
github.com/ghodss/yaml v1.0.0
8-
github.com/gin-gonic/gin v1.10.0
9-
github.com/go-vela/server v0.26.4
8+
github.com/gin-gonic/gin v1.11.0
9+
github.com/go-vela/server v0.27.5
1010
github.com/hashicorp/go-cleanhttp v0.5.2
11-
github.com/hashicorp/go-retryablehttp v0.7.7
12-
github.com/jfrog/jfrog-client-go v1.50.0
11+
github.com/hashicorp/go-retryablehttp v0.7.8
12+
github.com/jfrog/jfrog-client-go v1.55.0
1313
github.com/joho/godotenv v1.5.1
14-
github.com/sirupsen/logrus v1.9.3
15-
github.com/urfave/cli/v3 v3.3.8
14+
github.com/sirupsen/logrus v1.9.4
15+
github.com/urfave/cli/v3 v3.6.2
1616
)
1717

1818
require (
19-
dario.cat/mergo v1.0.1 // indirect
19+
dario.cat/mergo v1.0.2 // indirect
2020
github.com/CycloneDX/cyclonedx-go v0.9.2 // indirect
2121
github.com/Microsoft/go-winio v0.6.2 // indirect
22-
github.com/ProtonMail/go-crypto v1.1.5 // indirect
22+
github.com/ProtonMail/go-crypto v1.1.6 // indirect
2323
github.com/andybalholm/brotli v1.1.1 // indirect
24-
github.com/bytedance/sonic v1.12.10 // indirect
25-
github.com/bytedance/sonic/loader v0.3.0 // indirect
24+
github.com/bytedance/gopkg v0.1.3 // indirect
25+
github.com/bytedance/sonic v1.14.2 // indirect
26+
github.com/bytedance/sonic/loader v0.4.0 // indirect
2627
github.com/cloudflare/circl v1.6.1 // indirect
27-
github.com/cloudwego/base64x v0.1.5 // indirect
28+
github.com/cloudwego/base64x v0.1.6 // indirect
2829
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
2930
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
3031
github.com/emirpasic/gods v1.18.1 // indirect
3132
github.com/forPelevin/gomoji v1.3.0 // indirect
32-
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
33-
github.com/gin-contrib/sse v1.0.0 // indirect
33+
github.com/gabriel-vasile/mimetype v1.4.11 // indirect
34+
github.com/gin-contrib/sse v1.1.0 // indirect
3435
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3536
github.com/go-git/go-billy/v5 v5.6.2 // indirect
36-
github.com/go-git/go-git/v5 v5.13.2 // indirect
37+
github.com/go-git/go-git/v5 v5.14.0 // indirect
3738
github.com/go-playground/locales v0.14.1 // indirect
3839
github.com/go-playground/universal-translator v0.18.1 // indirect
39-
github.com/go-playground/validator/v10 v10.25.0 // indirect
40+
github.com/go-playground/validator/v10 v10.29.0 // indirect
4041
github.com/goccy/go-json v0.10.5 // indirect
42+
github.com/goccy/go-yaml v1.19.0 // indirect
4143
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
4244
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
4345
github.com/golang/snappy v0.0.4 // indirect
4446
github.com/gookit/color v1.5.4 // indirect
4547
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
4648
github.com/jfrog/archiver/v3 v3.6.1 // indirect
47-
github.com/jfrog/build-info-go v1.10.9 // indirect
49+
github.com/jfrog/build-info-go v1.11.0 // indirect
4850
github.com/jfrog/gofrog v1.7.6 // indirect
4951
github.com/json-iterator/go v1.1.12 // indirect
5052
github.com/kevinburke/ssh_config v1.2.0 // indirect
@@ -55,30 +57,31 @@ require (
5557
github.com/mattn/go-isatty v0.0.20 // indirect
5658
github.com/minio/sha256-simd v1.0.1 // indirect
5759
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
58-
github.com/modern-go/reflect2 v1.0.2 // indirect
60+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
5961
github.com/nwaples/rardecode v1.1.3 // indirect
60-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
62+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
6163
github.com/pierrec/lz4/v4 v4.1.22 // indirect
6264
github.com/pjbgf/sha1cd v0.3.2 // indirect
65+
github.com/quic-go/qpack v0.6.0 // indirect
66+
github.com/quic-go/quic-go v0.57.1 // indirect
6367
github.com/rivo/uniseg v0.4.7 // indirect
6468
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
6569
github.com/skeema/knownhosts v1.3.1 // indirect
6670
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
67-
github.com/ugorji/go/codec v1.2.12 // indirect
68-
github.com/ulikunitz/xz v0.5.12 // indirect
71+
github.com/ugorji/go/codec v1.3.1 // indirect
72+
github.com/ulikunitz/xz v0.5.14 // indirect
6973
github.com/xanzy/ssh-agent v0.3.3 // indirect
7074
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
7175
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
72-
golang.org/x/arch v0.19.0 // indirect
73-
golang.org/x/crypto v0.36.0 // indirect
74-
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
75-
golang.org/x/net v0.38.0 // indirect
76-
golang.org/x/sync v0.12.0 // indirect
77-
golang.org/x/sys v0.34.0 // indirect
78-
golang.org/x/term v0.30.0 // indirect
79-
golang.org/x/text v0.23.0 // indirect
80-
google.golang.org/protobuf v1.36.5 // indirect
76+
golang.org/x/arch v0.23.0 // indirect
77+
golang.org/x/crypto v0.46.0 // indirect
78+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
79+
golang.org/x/net v0.48.0 // indirect
80+
golang.org/x/sync v0.19.0 // indirect
81+
golang.org/x/sys v0.39.0 // indirect
82+
golang.org/x/term v0.38.0 // indirect
83+
golang.org/x/text v0.32.0 // indirect
84+
google.golang.org/protobuf v1.36.11 // indirect
8185
gopkg.in/warnings.v0 v0.1.2 // indirect
8286
gopkg.in/yaml.v2 v2.4.0 // indirect
83-
gopkg.in/yaml.v3 v3.0.1 // indirect
8487
)

0 commit comments

Comments
 (0)