fix(github): Use hardcoded version for helm (#1573)
- [x] use stable version of helm for azure/setup-helm github action - [x] match to v3 for azure/setup-helm usage (in linting action) Signed-off-by: jmeridth <jmeridth@gmail.com> Signed-off-by: jmeridth <jmeridth@gmail.com>
This commit is contained in:
parent
01ae72a7b1
commit
9d69923c93
2 changed files with 6 additions and 5 deletions
6
.github/workflows/lint-and-test.yml
vendored
6
.github/workflows/lint-and-test.yml
vendored
|
@ -15,7 +15,9 @@ jobs:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Set up Helm
|
- name: Set up Helm
|
||||||
uses: azure/setup-helm@v1
|
uses: azure/setup-helm@v3
|
||||||
|
with:
|
||||||
|
version: v3.10.1 # Also update in publish.yaml
|
||||||
|
|
||||||
- name: Set up python
|
- name: Set up python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
|
@ -59,7 +61,7 @@ jobs:
|
||||||
if: steps.list-changed.outputs.changed == 'true'
|
if: steps.list-changed.outputs.changed == 'true'
|
||||||
with:
|
with:
|
||||||
config: .github/configs/kind-config.yaml
|
config: .github/configs/kind-config.yaml
|
||||||
|
|
||||||
- name: Deploy latest ArgoCD CRDs when testing ArgoCD extensions
|
- name: Deploy latest ArgoCD CRDs when testing ArgoCD extensions
|
||||||
if: |
|
if: |
|
||||||
contains(steps.list-changed.outputs.changed_charts, 'argocd-image-updater') ||
|
contains(steps.list-changed.outputs.changed_charts, 'argocd-image-updater') ||
|
||||||
|
|
5
.github/workflows/publish.yml
vendored
5
.github/workflows/publish.yml
vendored
|
@ -22,8 +22,7 @@ jobs:
|
||||||
- name: Install Helm
|
- name: Install Helm
|
||||||
uses: azure/setup-helm@v3
|
uses: azure/setup-helm@v3
|
||||||
with:
|
with:
|
||||||
version: latest # stable
|
version: v3.10.1 # Also update in lint-and-test.yaml
|
||||||
token: ${{ secrets.GITHUB_TOKEN }} # only needed if version is 'latest'
|
|
||||||
|
|
||||||
- name: Add dependency chart repos
|
- name: Add dependency chart repos
|
||||||
run: |
|
run: |
|
||||||
|
@ -32,7 +31,7 @@ jobs:
|
||||||
- name: Configure Git
|
- name: Configure Git
|
||||||
run: |
|
run: |
|
||||||
git config user.name "$GITHUB_ACTOR"
|
git config user.name "$GITHUB_ACTOR"
|
||||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||||
|
|
||||||
## This is required to consider the old Circle-CI Index and to stay compatible with all the old releases.
|
## This is required to consider the old Circle-CI Index and to stay compatible with all the old releases.
|
||||||
- name: Fetch current Chart Index
|
- name: Fetch current Chart Index
|
||||||
|
|
Loading…
Reference in a new issue