Skip to content

Commit f275a5c

Browse files
build(deps): bump the all group with 4 updates
Bumps the all group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action), [actions/setup-go](https://github.com/actions/setup-go) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@08c6903...1af3b93) Updates `golangci/golangci-lint-action` from 9.0.0 to 9.1.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@0a35821...e7fa5ac) Updates `actions/setup-go` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@4469467...4dc6199) Updates `github/codeql-action` from 4.31.2 to 4.31.4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@0499de3...e12f017) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: golangci/golangci-lint-action dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: actions/setup-go dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: github/codeql-action dependency-version: 4.31.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 18407c2 commit f275a5c

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

.github/workflows/actionlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Lint GitHub workflows
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
10+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1111
- name: Check workflow files
1212
uses: docker://rhysd/actionlint:latest
1313
with:

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
29+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3030
with:
3131
submodules: true
3232

3333
- name: Run Linter
34-
uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
34+
uses: golangci/golangci-lint-action@e7fa5ac41e1cf5b7d48e45e42232ce7ada589601 # v9.1.0
3535
with:
3636
working-directory: lintapp
3737
version: latest

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848
sudo apt-get install ${{ inputs.os-dependencies }}
4949
-
5050
name: Checkout
51-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
51+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5252
with:
5353
submodules: true
5454
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
5555
-
5656
name: Setup Go
5757
id: setup-go
58-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
58+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
5959
with:
6060
go-version: 'stable'
6161
check-latest: true
@@ -97,7 +97,7 @@ jobs:
9797
-
9898
# Initializes the CodeQL tools for scanning.
9999
name: Initialize CodeQL
100-
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
100+
uses: github/codeql-action/init@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
101101
with:
102102
languages: ${{ matrix.language }}
103103
queries: security-and-quality # use Canonical suite
@@ -113,7 +113,7 @@ jobs:
113113
${{ inputs.codeql-build-cmd }}
114114
-
115115
name: Perform CodeQL Analysis
116-
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
116+
uses: github/codeql-action/analyze@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
117117
with:
118118
output: codeql-results
119119
category: "/language:${{ matrix.language }}"

.github/workflows/docker-buildx-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
contents: write
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
41+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4242
- name: Setup Go
43-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
43+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
4444
with:
4545
go-version: 'stable'
4646
check-latest: true

.github/workflows/goBuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
sudo apt-get install ${{ inputs.os-dependencies }}
5959
-
6060
name: Checkout
61-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
61+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
6262
with:
6363
submodules: true
6464
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
@@ -72,7 +72,7 @@ jobs:
7272
git config --global [email protected]:.insteadOf https://github.com/
7373
-
7474
name: Install Go
75-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
75+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
7676
with:
7777
go-version: ${{ matrix.go }}
7878
check-latest: true

.github/workflows/goCI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
runs-on: ubuntu-latest
8989
if: inputs.run-actionlint
9090
steps:
91-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
91+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
9292
- name: Check workflow files
9393
uses: docker://rhysd/actionlint:latest
9494
with:

.github/workflows/goLint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ jobs:
4444
sudo apt-get install ${{ inputs.os-dependencies }}
4545
-
4646
name: Checkout
47-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
47+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4848
with:
4949
submodules: true
5050
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
5151
-
5252
name: Setup Go
53-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
53+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
5454
with:
5555
go-version-file: go.mod
5656
check-latest: true
@@ -82,7 +82,7 @@ jobs:
8282
run: go mod tidy -diff
8383
-
8484
name: Run Linter
85-
uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
85+
uses: golangci/golangci-lint-action@e7fa5ac41e1cf5b7d48e45e42232ce7ada589601 # v9.1.0
8686
if: success() || failure() # run this step even if the previous one failed
8787
with:
8888
version: ${{ inputs.golangci-lint-version }}

.github/workflows/goTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
sudo apt-get install ${{ inputs.os-dependencies }}
7676
-
7777
name: Checkout
78-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
78+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
7979
with:
8080
submodules: true
8181
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
@@ -90,7 +90,7 @@ jobs:
9090
-
9191
name: Setup Go
9292
id: setup-go
93-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
93+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
9494
with:
9595
go-version: ${{ matrix.go }}
9696
check-latest: true

.github/workflows/goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ jobs:
8080
sudo apt-get install ${{ inputs.os-dependencies }}
8181
-
8282
name: Checkout
83-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
83+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
8484
with:
8585
fetch-depth: 0
8686
-
8787
run: git fetch --force --tags
8888
-
8989
name: Set up Go
90-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
90+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
9191
with:
9292
go-version: '${{ inputs.go-version }}'
9393
check-latest: true

.github/workflows/govulncheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
sudo apt-get install ${{ inputs.os-dependencies }}
2929
-
3030
name: Checkout
31-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
31+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3232
with:
3333
submodules: true
3434
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
@@ -42,7 +42,7 @@ jobs:
4242
git config --global [email protected]:.insteadOf https://github.com/
4343
-
4444
name: Setup Go
45-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
45+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
4646
with:
4747
go-version: 'stable'
4848
check-latest: true

0 commit comments

Comments
 (0)