Skip to content

Commit

Permalink
ci: Fix the python version used by actions/setup-python (#55)
Browse files Browse the repository at this point in the history
The previous version (3.7) seems to no longer be available. See [1]

[1] https://github.com/redhat-developer/rhdh-chart/actions/runs/12773187597/job/35604468404?pr=54
  • Loading branch information
rm3l authored Jan 14, 2025
1 parent 4545c7e commit 48b8b05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
if: steps.command.outputs.command-name == 'bump'
with:
python-version: 3.7
python-version: 3.13

- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5
if: steps.command.outputs.command-name == 'bump'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
with:
python-version: 3.7
python-version: 3.13

- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5
with:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
with:
python-version: 3.7
python-version: 3.13

- name: Set up chart-testing
uses: helm/chart-testing-action@e6669bcd63d7cb57cb4380c33043eebe5d111992 # v2.6.1
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
with:
python-version: 3.7
python-version: 3.13

- name: Set up chart-testing
uses: helm/chart-testing-action@e6669bcd63d7cb57cb4380c33043eebe5d111992 # v2.6.1
Expand Down

0 comments on commit 48b8b05

Please sign in to comment.