Skip to content

Commit c3028f6

Browse files
author
Chetan_konaganahalli
committed
upgraded go version with 1.23 v
1 parent f31a942 commit c3028f6

File tree

1 file changed

+26
-19
lines changed

1 file changed

+26
-19
lines changed

.github/workflows/test.yml

Lines changed: 26 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -130,22 +130,29 @@ jobs:
130130
- name: Test if resolved
131131
run: bash test/checkFilesResolved.sh
132132

133-
golangci:
134-
name: Lint
135-
runs-on: ubuntu-latest
136-
steps:
137-
- uses: actions/checkout@v4
138-
- uses: actions/setup-go@v5
139-
with:
140-
go-version: '1.23'
141-
- name: Pull Supported Formats
142-
run: |
143-
cd cmd/debricked
144-
go generate -v -x
145-
- name: Download modules
146-
run: |
147-
go mod download
148-
- name: golangci-lint
149-
uses: golangci/golangci-lint-action@v4
150-
with:
151-
version: v1.52
133+
golangci:
134+
name: Lint
135+
runs-on: ubuntu-latest
136+
steps:
137+
- uses: actions/checkout@v4
138+
139+
- uses: actions/setup-go@v5
140+
with:
141+
go-version: '1.23'
142+
143+
- name: Generate files
144+
working-directory: cmd/debricked
145+
run: go generate -v -x
146+
147+
- name: Download deps
148+
working-directory: cmd/debricked
149+
run: go mod download
150+
151+
- name: golangci-lint
152+
uses: golangci/golangci-lint-action@v6
153+
with:
154+
version: latest
155+
working-directory: cmd/debricked
156+
args: >
157+
--build-tags cli
158+

0 commit comments

Comments
 (0)