From 246739d7027bef397c28b0f355609d050f724734 Mon Sep 17 00:00:00 2001 From: chrislusf Date: Sun, 7 Dec 2025 12:19:13 -0800 Subject: Upgrade GitHub Actions to latest versions - Upgrade actions/checkout from v3 to v4 - Upgrade azure/setup-helm from v3 to v4 - Upgrade actions/setup-python from v4 to v5 These upgrades address Node.js runtime deprecations and ensure compatibility with the latest GitHub Actions infrastructure. --- .github/workflows/helm_ci.yaml | 6 +++--- .github/workflows/helm_release.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/helm_ci.yaml b/.github/workflows/helm_ci.yaml index aa4cdbf..7890227 100644 --- a/.github/workflows/helm_ci.yaml +++ b/.github/workflows/helm_ci.yaml @@ -16,16 +16,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: version: v3.10.0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.9' check-latest: true diff --git a/.github/workflows/helm_release.yaml b/.github/workflows/helm_release.yaml index a3d4946..0f50037 100644 --- a/.github/workflows/helm_release.yaml +++ b/.github/workflows/helm_release.yaml @@ -18,10 +18,10 @@ jobs: name: helm-release url: https://github.com/${{ github.repository }}/releases steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: version: v3.12.0 -- cgit v1.2.3