Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update python, node, helm #1885

Merged
merged 1 commit into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"

- name: Install helm diff plugin, update local chart dependencies
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"

- uses: actions/setup-node@v4
# node required to build wheel
with:
node-version: "16"
node-version: "22"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've made this "lts/*" in various other projects to reduce the amount of manual bumping needs - fine to bump manually also


- name: Set up QEMU (for docker buildx)
uses: docker/setup-qemu-action@v3
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Setup helm
uses: azure/setup-helm@v4
with:
version: "v3.5.4"
version: "v3.16.2"

- name: Install chart publishing dependencies (chartpress, etc)
run: |
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
- name: Install pypa/build
run: python -mpip install build
- name: Build a sdist, and a binary wheel from the sdist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"

- uses: actions/setup-node@v4
# node required to build wheel
with:
node-version: "16"
node-version: "22"

- name: Install chartpress
run: pip install chartpress build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
- uses: actions/setup-node@v4
id: setup-node
with:
node-version: "18"
node-version: "22"

- name: Cache npm
uses: actions/cache@v4
Expand All @@ -155,7 +155,7 @@ jobs:
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: "3.11"
python-version: "3.12"

- name: Cache pip
uses: actions/cache@v4
Expand Down Expand Up @@ -397,7 +397,7 @@ jobs:
- uses: actions/setup-node@v4
id: setup-node
with:
node-version: "18"
node-version: "22"

- name: Cache npm
uses: actions/cache@v4
Expand All @@ -408,7 +408,7 @@ jobs:
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: "3.11"
python-version: "3.12"

- name: Cache pip
uses: actions/cache@v4
Expand Down
Loading