Skip to content

Commit 672bf55

Browse files
Bump python version (#249)
* Bump python version Apparently 3.7 isn't available anymore in the running image which is causing some CI issues Signed-off-by: Vincenzo Scamporlino <[email protected]> * Update test.yml Signed-off-by: Vincenzo Scamporlino <[email protected]> * Update test.yml Signed-off-by: Vincenzo Scamporlino <[email protected]> * fix: updates json schemas Signed-off-by: ChrisJBurns <[email protected]> * chore: bump bugfix chart version Signed-off-by: ChrisJBurns <[email protected]> --------- Signed-off-by: Vincenzo Scamporlino <[email protected]> Signed-off-by: ChrisJBurns <[email protected]> Co-authored-by: ChrisJBurns <[email protected]>
1 parent 165d184 commit 672bf55

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.github/workflows/test.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Lint Charts
22

33
on:
44
pull_request:
5-
paths:
6-
- "charts/**"
75

86
jobs:
97
check-readme:
@@ -16,7 +14,7 @@ jobs:
1614

1715
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # pin@v4
1816
with:
19-
python-version: 3.7
17+
python-version: 3.12
2018

2119
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # pin@v3
2220
with:
@@ -43,7 +41,7 @@ jobs:
4341

4442
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # pin@v4
4543
with:
46-
python-version: 3.7
44+
python-version: 3.12
4745

4846
- name: Set up chart-testing
4947
uses: helm/chart-testing-action@0d28d3144d3a25ea2cc349d6e59901c4ff469b3b # [email protected]

charts/backstage/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ sources:
3838
# This is the chart version. This version number should be incremented each time you make changes
3939
# to the chart and its templates, including the app version.
4040
# Versions are expected to follow Semantic Versioning (https://semver.org/)
41-
version: 2.3.0
41+
version: 2.3.1

charts/backstage/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Backstage Helm Chart
33

44
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/backstage)](https://artifacthub.io/packages/search?repo=backstage)
5-
![Version: 2.3.0](https://img.shields.io/badge/Version-2.3.0-informational?style=flat-square)
5+
![Version: 2.3.1](https://img.shields.io/badge/Version-2.3.1-informational?style=flat-square)
66
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
77

88
A Helm chart for deploying a Backstage application

charts/backstage/values.schema.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@
11311131
"envFrom": {
11321132
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
11331133
"items": {
1134-
"description": "EnvFromSource represents the source of a set of ConfigMaps",
1134+
"description": "EnvFromSource represents the source of a set of ConfigMaps or Secrets",
11351135
"properties": {
11361136
"configMapRef": {
11371137
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
@@ -1148,7 +1148,7 @@
11481148
"type": "object"
11491149
},
11501150
"prefix": {
1151-
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
1151+
"description": "Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.",
11521152
"type": "string"
11531153
},
11541154
"secretRef": {
@@ -4248,7 +4248,7 @@
42484248
"envFrom": {
42494249
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
42504250
"items": {
4251-
"description": "EnvFromSource represents the source of a set of ConfigMaps",
4251+
"description": "EnvFromSource represents the source of a set of ConfigMaps or Secrets",
42524252
"properties": {
42534253
"configMapRef": {
42544254
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
@@ -4265,7 +4265,7 @@
42654265
"type": "object"
42664266
},
42674267
"prefix": {
4268-
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
4268+
"description": "Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.",
42694269
"type": "string"
42704270
},
42714271
"secretRef": {

0 commit comments

Comments
 (0)