Compare commits

...

4 Commits

Author SHA1 Message Date
Artem Yadelskyi 070efdd5e6
Merge d94972fa50 into 0baa4f6b09 2025-10-22 11:16:16 -05:00
dependabot[bot] 0baa4f6b09
Bump github/codeql-action from 3 to 4 in the actions group (#4281)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 11:26:36 +02:00
Artem Yadelskyi d94972fa50
Merge branch 'master' into fix-helm-deployment-labels 2025-06-27 12:14:24 +03:00
Artem Yadelskyi f79086f27e
Fix missing quote in helm chart templates 2025-06-27 11:22:19 +03:00
4 changed files with 7 additions and 5 deletions

View File

@ -33,12 +33,12 @@ jobs:
go-version-file: go.mod
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: go, actions
- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4

View File

@ -52,7 +52,7 @@ app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- range $k, $v := .Values.labels }}
{{ $k }}: {{ $v }}
{{ $k }}: {{ $v | quote }}
{{- end }}
{{- end }}

View File

@ -41,7 +41,7 @@ app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- range $k, $v := .Values.labels }}
{{ $k }}: {{ $v }}
{{ $k }}: {{ $v | quote }}
{{- end }}
{{- end }}

View File

@ -1,3 +1,5 @@
labels: {}
image:
repository: summerwind/actions-runner
tag: v2.290.1-ubuntu-20.04