Skip to content

Commit b0eb89f

Browse files
committed
feat(ci): bump golangci-lint
1 parent 549374e commit b0eb89f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v4
13-
- name: Setup Golang with cache
14-
uses: magnetikonline/action-golang-cache@v5
13+
- name: Setup Go
14+
uses: actions/setup-go@v6
1515
with:
1616
go-version-file: go.mod
1717
- name: Lint
18-
uses: golangci/golangci-lint-action@v8
18+
uses: golangci/golangci-lint-action@v9
1919
with:
2020
install-mode: goinstall
21-
version: v2.4.0
21+
version: v2.6.1
2222
- name: Test
2323
run: go test ./...
2424
release-please:
@@ -53,8 +53,8 @@ jobs:
5353
steps:
5454
- name: Checkout
5555
uses: actions/checkout@v4
56-
- name: Setup Golang with cache
57-
uses: magnetikonline/action-golang-cache@v5
56+
- name: Setup Go
57+
uses: actions/setup-go@v6
5858
with:
5959
go-version-file: go.mod
6060
- name: Build
@@ -82,7 +82,7 @@ jobs:
8282
steps:
8383
- name: Checkout
8484
uses: actions/checkout@v4
85-
- name: Set up Docker Buildx
85+
- name: Setup Docker Buildx
8686
uses: docker/setup-buildx-action@v1
8787
- name: Login into DockerHub
8888
run: echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v4
14-
- name: Setup Golang with cache
15-
uses: magnetikonline/action-golang-cache@v5
14+
- name: Setup Go
15+
uses: actions/setup-go@v6
1616
with:
1717
go-version-file: go.mod
1818
- name: Lint
19-
uses: golangci/golangci-lint-action@v8
19+
uses: golangci/golangci-lint-action@v9
2020
with:
2121
install-mode: goinstall
22-
version: v2.4.0
22+
version: v2.6.1
2323
- name: Test
2424
run: go test ./...

0 commit comments

Comments
 (0)