Skip to content

Commit

Permalink
Bump python version (#249)
Browse files Browse the repository at this point in the history
* 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 <vincenzos@spotify.com>

* Update test.yml

Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>

* Update test.yml

Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>

* fix: updates json schemas

Signed-off-by: ChrisJBurns <29541485+ChrisJBurns@users.noreply.github.com>

* chore: bump bugfix chart version

Signed-off-by: ChrisJBurns <29541485+ChrisJBurns@users.noreply.github.com>

---------

Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>
Signed-off-by: ChrisJBurns <29541485+ChrisJBurns@users.noreply.github.com>
Co-authored-by: ChrisJBurns <29541485+ChrisJBurns@users.noreply.github.com>
  • Loading branch information
vinzscam and ChrisJBurns authored Feb 8, 2025
1 parent 165d184 commit 672bf55
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Lint Charts

on:
pull_request:
paths:
- "charts/**"

jobs:
check-readme:
Expand All @@ -16,7 +14,7 @@ jobs:

- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # pin@v4
with:
python-version: 3.7
python-version: 3.12

- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # pin@v3
with:
Expand All @@ -43,7 +41,7 @@ jobs:

- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # pin@v4
with:
python-version: 3.7
python-version: 3.12

- name: Set up chart-testing
uses: helm/chart-testing-action@0d28d3144d3a25ea2cc349d6e59901c4ff469b3b # pin@v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion charts/backstage/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ sources:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.3.0
version: 2.3.1
2 changes: 1 addition & 1 deletion charts/backstage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Backstage Helm Chart

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

A Helm chart for deploying a Backstage application
Expand Down
8 changes: 4 additions & 4 deletions charts/backstage/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@
"envFrom": {
"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.",
"items": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"description": "EnvFromSource represents the source of a set of ConfigMaps or Secrets",
"properties": {
"configMapRef": {
"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.",
Expand All @@ -1148,7 +1148,7 @@
"type": "object"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"description": "Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
Expand Down Expand Up @@ -4248,7 +4248,7 @@
"envFrom": {
"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.",
"items": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"description": "EnvFromSource represents the source of a set of ConfigMaps or Secrets",
"properties": {
"configMapRef": {
"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.",
Expand All @@ -4265,7 +4265,7 @@
"type": "object"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"description": "Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
Expand Down

0 comments on commit 672bf55

Please sign in to comment.