Skip to content

Commit

Permalink
Update helm and helmfile (#45)
Browse files Browse the repository at this point in the history
* update dependencies

* update workflow
  • Loading branch information
kondoumh committed Nov 5, 2022
1 parent 5e0a736 commit 4b40dc8
Show file tree
Hide file tree
Showing 6 changed files with 2,324 additions and 1,277 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
install_all_default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
- name: Test
Expand All @@ -20,7 +20,7 @@ jobs:
install_helmfile_with_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
with:
Expand All @@ -36,7 +36,7 @@ jobs:
install_helm_plugins_without_helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
with:
Expand All @@ -53,7 +53,7 @@ jobs:
install_only_helmfile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
with:
Expand All @@ -71,7 +71,7 @@ jobs:
install_addtional_plugins:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
with:
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1.0.0
- uses: actions/checkout@v3
- name: Setup helmfile
uses: mamezou-tech/setup-helmfile@v1.0.0
uses: mamezou-tech/setup-helmfile@v1.1.0
- name: Test
run: |
helmfile --version
Expand All @@ -29,10 +29,10 @@ jobs:
```
## Optional Inputs
- `helmfile-version` : helmfile version. Default `"v0.145.0"`.
- `helm-version` : Helm version. Default `"v3.7.2"`
- `kubectl-version` : kubectl version. Default `1.22.9`
- `kubectl-release-date` : kubectl release date. Default `2022-06-03`
- `helmfile-version` : helmfile version. Default `"v0.147.0"`.
- `helm-version` : Helm version. Default `"v3.10.1"`
- `kubectl-version` : kubectl version. Default `1.23.7`
- `kubectl-release-date` : kubectl release date. Default `2022-06-29`
- `install-kubectl` : Install kubectl. Default `yes`
- `install-helm` : Install Helm. Default `yes`
- `install-helm-plugins` : Install Helm plugins. Default `yes`
Expand All @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup helmfile
uses: mamezou-tech/setup-helmfile@v1.0.0
uses: mamezou-tech/setup-helmfile@v1.1.0
with:
helmfile-version: "v0.135.0"
```
Expand All @@ -67,7 +67,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup helmfile
uses: mamezou-tech/setup-helmfile@v1.0.0
uses: mamezou-tech/setup-helmfile@v1.1.0
with:
install-kubectl: no
install-helm: no
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup helmfile
uses: mamezou-tech/setup-helmfile@v1.0.0
uses: mamezou-tech/setup-helmfile@v1.1.0
with:
additional-helm-plugins: https://github.com/aslafy-z/helm-git --version 0.10.0
```
Expand All @@ -94,7 +94,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup helmfile
uses: mamezou-tech/setup-helmfile@v1.0.0
uses: mamezou-tech/setup-helmfile@v1.1.0
with:
install-helm-plugins: no
```
Expand Down
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ branding:
inputs:
kubectl-version:
description: "kubectl (AWS edition) version"
default: "1.22.9"
default: "1.23.7"
required: false
kubectl-release-date:
description: "kubectl (AWS edition) release date"
default: "2022-06-03"
default: "2022-06-29"
required: false
helm-version:
description: "Helm version"
default: "v3.9.0"
default: "v3.10.1"
required: false
helmfile-version:
description: "helmfile version"
default: "v0.145.0"
default: "v0.147.0"
required: false
install-kubectl:
description: "Install kubectl"
Expand Down
Loading

0 comments on commit 4b40dc8

Please sign in to comment.