Skip to content

Commit b0ebd2a

Browse files
authored
Merge pull request #178 from ulucinar/parameterize-golangci-lint-version
Parameterize the golangci-lint version for the provider repositories
2 parents 6a53f0c + 112fe89 commit b0ebd2a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/provider-ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ on:
1212
default: '1.20'
1313
required: false
1414
type: string
15+
golangci-version:
16+
description: 'The version string to be used with the golangci-lint action'
17+
default: 'v1.55.2'
18+
required: false
19+
type: string
1520
secrets:
1621
UPBOUND_MARKETPLACE_PUSH_ROBOT_USR:
1722
required: true
@@ -20,7 +25,6 @@ on:
2025

2126
env:
2227
# Common versions
23-
GOLANGCI_VERSION: 'v1.54.2'
2428
DOCKER_BUILDX_VERSION: 'v0.8.2'
2529

2630
# Common users. We can't run a step 'if secrets.XXX != ""' but we can run a
@@ -112,7 +116,7 @@ jobs:
112116
- name: Lint
113117
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3
114118
with:
115-
version: ${{ env.GOLANGCI_VERSION }}
119+
version: ${{ inputs.golangci-version }}
116120
args: --timeout=30m
117121

118122
check-diff:

0 commit comments

Comments
 (0)