Skip to content

Commit f8d307f

Browse files
build(deps): bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) 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@v9.0.0...v9.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ef975ed commit f8d307f

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/deploy-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
HUGO_VERSION: 0.148.1
2020
CGO_ENABLED: 0
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- uses: actions/setup-go@v6
2424
with:
2525
go-version: ${{ env.GO_VERSION }}

.github/workflows/new-linter-checklist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
add-comment:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Add checklist
2020
run: |
2121
# Avoid adding multiple comments for the same PR.

.github/workflows/post-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GOLANGCI_LINT_TOKEN }}
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- uses: actions/setup-go@v6
2323
with:
2424
go-version: ${{ env.GO_VERSION }}
@@ -41,7 +41,7 @@ jobs:
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GOLANGCI_LINT_TOKEN }}
4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
- uses: actions/setup-go@v6
4646
with:
4747
go-version: ${{ env.GO_VERSION }}

.github/workflows/pr-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
go-mod:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- uses: actions/setup-go@v6
2222
with:
2323
go-version: ${{ env.GO_VERSION }}
@@ -32,7 +32,7 @@ jobs:
3232
# check-generated:
3333
# runs-on: ubuntu-latest
3434
# steps:
35-
# - uses: actions/checkout@v5
35+
# - uses: actions/checkout@v6
3636
# with:
3737
# fetch-depth: 0
3838
# - uses: actions/setup-go@v6
@@ -51,15 +51,15 @@ jobs:
5151
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
5252
runs-on: ${{ matrix.os }}
5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555
- name: Check installation script
5656
run: cat ./install.sh | sh -s -- -d -b "./install-golangci-lint"
5757

5858
# Note: the command `run` is tested by the other workflows (`make test`).
5959
check-commands:
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363
- uses: actions/setup-go@v6
6464
with:
6565
go-version: ${{ env.GO_VERSION }}

.github/workflows/pr-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
CGO_ENABLED: 0
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- uses: actions/setup-go@v6
2323
with:
2424
go-version: ${{ env.GO_VERSION }}

.github/workflows/pr-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
go-mod:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- uses: actions/setup-go@v6
2222
with:
2323
go-version: ${{ env.GO_VERSION }}
@@ -32,7 +32,7 @@ jobs:
3232
golangci-lint:
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
- uses: actions/setup-go@v6
3737
with:
3838
# https://github.com/actions/setup-go#supported-version-syntax
@@ -41,15 +41,15 @@ jobs:
4141
# - 1.18rc1 -> 1.18.0-rc.1
4242
go-version: ${{ env.GO_VERSION }}
4343
- name: lint
44-
uses: golangci/golangci-lint-action@v9.0.0
44+
uses: golangci/golangci-lint-action@v9.1.0
4545
with:
4646
version: latest
4747

4848
tests-on-windows:
4949
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
5050
runs-on: windows-latest
5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
- uses: actions/setup-go@v6
5454
with:
5555
go-version: ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
@@ -60,7 +60,7 @@ jobs:
6060
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
6161
runs-on: macos-latest
6262
steps:
63-
- uses: actions/checkout@v5
63+
- uses: actions/checkout@v6
6464
- uses: actions/setup-go@v6
6565
with:
6666
go-version: ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
@@ -79,7 +79,7 @@ jobs:
7979
- '1.25'
8080
runs-on: ${{ matrix.os }}
8181
steps:
82-
- uses: actions/checkout@v5
82+
- uses: actions/checkout@v6
8383
- uses: actions/setup-go@v6
8484
with:
8585
go-version: ${{ matrix.golang }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
docker-images: true
4343
swap-storage: false
4444

45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
4646
with:
4747
fetch-depth: 0
4848
- uses: actions/setup-go@v6

0 commit comments

Comments
 (0)