We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a53f0c + 112fe89 commit b0ebd2aCopy full SHA for b0ebd2a
.github/workflows/provider-ci.yml
@@ -12,6 +12,11 @@ on:
12
default: '1.20'
13
required: false
14
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
20
secrets:
21
UPBOUND_MARKETPLACE_PUSH_ROBOT_USR:
22
required: true
@@ -20,7 +25,6 @@ on:
25
26
env:
27
# Common versions
23
- GOLANGCI_VERSION: 'v1.54.2'
24
28
DOCKER_BUILDX_VERSION: 'v0.8.2'
29
30
# Common users. We can't run a step 'if secrets.XXX != ""' but we can run a
@@ -112,7 +116,7 @@ jobs:
112
116
- name: Lint
113
117
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3
114
118
with:
115
- version: ${{ env.GOLANGCI_VERSION }}
119
+ version: ${{ inputs.golangci-version }}
120
args: --timeout=30m
121
122
check-diff:
0 commit comments