Skip to content

Commit 6d7a18f

Browse files
fix(deps): update all non-major dependencies
1 parent 85ec601 commit 6d7a18f

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

Diff for: .github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616

1717
- name: install go
18-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
18+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
1919
with:
2020
# use version from go.mod file
2121
go-version-file: "go.mod"

Diff for: .github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
42+
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
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@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
53+
uses: github/codeql-action/autobuild@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ 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@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15

Diff for: .github/workflows/prerelease.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: install go
22-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
22+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2323
with:
2424
# use version from go.mod file
2525
go-version-file: "go.mod"

Diff for: .github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fetch-depth: 0
1919

2020
- name: install go
21-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
21+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2222
with:
2323
# use version from go.mod file
2424
go-version-file: "go.mod"

Diff for: .github/workflows/reviewdog.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1515

1616
- name: install go
17-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
17+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
1818
with:
1919
# use version from go.mod file
2020
go-version-file: "go.mod"
2121
cache: true
2222
check-latest: true
2323

2424
- name: golangci-lint
25-
uses: reviewdog/action-golangci-lint@dd3fda91790ca90e75049e5c767509dc0ec7d99b # v2
25+
uses: reviewdog/action-golangci-lint@f9bba13753278f6a73b27a56a3ffb1bfda90ed71 # v2
2626
with:
2727
github_token: ${{ secrets.github_token }}
2828
golangci_lint_flags: "--config=.golangci.yml"
@@ -38,15 +38,15 @@ jobs:
3838
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3939

4040
- name: install go
41-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
41+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
4242
with:
4343
# use version from go.mod file
4444
go-version-file: "go.mod"
4545
cache: true
4646
check-latest: true
4747

4848
- name: golangci-lint
49-
uses: reviewdog/action-golangci-lint@dd3fda91790ca90e75049e5c767509dc0ec7d99b # v2.7.0
49+
uses: reviewdog/action-golangci-lint@f9bba13753278f6a73b27a56a3ffb1bfda90ed71 # v2.8.0
5050
with:
5151
github_token: ${{ secrets.github_token }}
5252
golangci_lint_flags: "--config=.golangci.yml"

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616

1717
- name: install go
18-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
18+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.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@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
3131
with:
3232
token: ${{ secrets.CODECOV_TOKEN }}
3333
file: coverage.out

Diff for: .github/workflows/validate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616

1717
- name: install go
18-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
18+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
1919
with:
2020
# use version from go.mod file
2121
go-version-file: "go.mod"

Diff for: go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ require (
99
github.com/go-vela/server v0.26.2
1010
github.com/hashicorp/go-cleanhttp v0.5.2
1111
github.com/hashicorp/go-retryablehttp v0.7.7
12-
github.com/jfrog/jfrog-client-go v1.50.0
12+
github.com/jfrog/jfrog-client-go v1.52.0
1313
github.com/joho/godotenv v1.5.1
1414
github.com/sirupsen/logrus v1.9.3
15-
github.com/urfave/cli/v2 v2.27.5
15+
github.com/urfave/cli/v2 v2.27.6
1616
)
1717

1818
require (

0 commit comments

Comments
 (0)