mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-26 16:09:45 -05:00
deps: update sonobuoy version
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
parent
8c57995468
commit
617c6f0a8d
10
.github/actions/e2e_sonobuoy/action.yml
vendored
10
.github/actions/e2e_sonobuoy/action.yml
vendored
@ -5,10 +5,6 @@ inputs:
|
||||
cloudProvider:
|
||||
description: "CSP name necessary for artifact naming."
|
||||
required: true
|
||||
sonobuoyVersion:
|
||||
description: "Version of sonobuoy test CLI to use."
|
||||
default: "0.56.14"
|
||||
required: true
|
||||
sonobuoyTestSuiteCmd:
|
||||
description: "Which tests should be run?"
|
||||
kubeconfig:
|
||||
@ -20,11 +16,13 @@ runs:
|
||||
steps:
|
||||
- name: Install sonobuoy
|
||||
shell: bash
|
||||
env:
|
||||
SONOBUOY_VER: "0.56.15"
|
||||
run: |
|
||||
HOSTOS="$(go env GOOS)"
|
||||
HOSTARCH="$(go env GOARCH)"
|
||||
curl -fsSLO https://github.com/vmware-tanzu/sonobuoy/releases/download/v${{ inputs.sonobuoyVersion }}/sonobuoy_${{ inputs.sonobuoyVersion }}_${HOSTOS}_${HOSTARCH}.tar.gz
|
||||
tar -xzf sonobuoy_${{ inputs.sonobuoyVersion }}_${HOSTOS}_${HOSTARCH}.tar.gz
|
||||
curl -fsSLO https://github.com/vmware-tanzu/sonobuoy/releases/download/v${SONOBUOY_VER}/sonobuoy_${SONOBUOY_VER}_${HOSTOS}_${HOSTARCH}.tar.gz
|
||||
tar -xzf sonobuoy_${SONOBUOY_VER}_${HOSTOS}_${HOSTARCH}.tar.gz
|
||||
install sonobuoy /usr/local/bin
|
||||
|
||||
- name: Sonobuoy version
|
||||
|
Loading…
Reference in New Issue
Block a user