File tree Expand file tree Collapse file tree 4 files changed +25
-27
lines changed Expand file tree Collapse file tree 4 files changed +25
-27
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- name : ' helm '
2
- description : ' A GitHub Action to run helm commands'
3
- author : ' Stefan Prodan'
1
+ name : Setup Helm
2
+ description : A GitHub Action for running Helm commands
3
+ author : Stefan Prodan
4
4
branding :
5
- icon : ' command'
6
- color : ' blue'
5
+ color : blue
6
+ icon : command
7
+ inputs :
8
+ version :
9
+ description : " Helm version"
10
+ required : true
7
11
runs :
8
- using : ' docker'
9
- image : ' Dockerfile'
12
+ using : composite
13
+ steps :
14
+ - name : " Install Helm"
15
+ shell : bash
16
+ run : |
17
+ VERSION=${{ inputs.version }}
18
+ cd /tmp
19
+ curl -sL https://get.helm.sh/helm-v${VERSION}-linux-amd64.tar.gz | tar xz
20
+ sudo cp ./linux-amd64/helm /usr/local/bin
21
+ - name : " Verify correct installation of binary"
22
+ shell : bash
23
+ run : |
24
+ helm version
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
ref : master
18
18
- name : Setup Helm
19
19
uses : ./.github/actions/helm
20
+ with :
21
+ version : 3.5.3
20
22
- name : Check for updates
21
23
id : check
22
24
run : |
36
38
echo ::set-output name=version::${ISTIO_VER}
37
39
fi
38
40
- name : Create Pull Request
39
- uses : peter-evans/create-pull-request@v2
41
+ uses : peter-evans/create-pull-request@v3
40
42
if : steps.check.outputs.version
41
43
with :
42
44
commit-message : Update Istio to ${{ steps.check.outputs.version }}
You can’t perform that action at this time.
0 commit comments