@@ -15,26 +15,26 @@ jobs:
1515 runs-on : ubuntu-latest
1616 steps :
1717 - name : Checkout
18- uses : actions/checkout@v3
18+ uses : actions/checkout@v7
1919 with :
2020 fetch-depth : 0
2121
2222 - name : Set up Helm
23- uses : azure/setup-helm@v3
23+ uses : azure/setup-helm@v5.0.0
2424 with :
2525 token : " ${{ secrets.GITHUB_TOKEN }}"
2626
2727 - name : Add dependent chart repositories
2828 run : |
2929 helm repo add groundhog2k https://groundhog2k.github.io/helm-charts
3030
31- - uses : actions/setup-python@v4
31+ - uses : actions/setup-python@v6.0.0
3232 with :
33- python-version : ' 3.10 '
33+ python-version : ' 3.x '
3434 check-latest : true
3535
3636 - name : Set up chart-testing
37- uses : helm/chart-testing-action@v2.6 .0
37+ uses : helm/chart-testing-action@v2.8 .0
3838
3939 - name : Run chart-testing (list-changed)
4040 id : list-changed
@@ -48,10 +48,16 @@ jobs:
4848 if : steps.list-changed.outputs.changed == 'true'
4949 run : ct lint --target-branch ${{ github.event.repository.default_branch }}
5050
51- - name : Create kind cluster
52- if : steps.list-changed.outputs.changed == 'true'
53- uses : helm/kind-action@v1.8.0
54-
55- - name : Run chart-testing (install)
56- if : steps.list-changed.outputs.changed == 'true'
57- run : ct install --target-branch ${{ github.event.repository.default_branch }}
51+ # https://github.com/marketplace/actions/kind-cluster
52+ #
53+ # disabled chart install as the kind server doesn't support ReadWriteMany storage
54+ # what we need for celery
55+ # https://github.com/kubernetes-sigs/kind/issues/1487
56+
57+ # - name: Create kind cluster
58+ # if: steps.list-changed.outputs.changed == 'true'
59+ # uses: helm/kind-action@v1.14.0
60+
61+ # - name: Run chart-testing (install)
62+ # if: steps.list-changed.outputs.changed == 'true'
63+ # run: ct install --target-branch ${{ github.event.repository.default_branch }}
0 commit comments