Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Bump goss to v0.4.9 #1617

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/book/src/capi/goss/goss.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Supported arguments are passed through file: `packer/config/goss-args.json`
"goss_url": "",
"goss_format_options": "pretty",
"goss_vars_file": "packer/goss/goss-vars.yaml",
"goss_version": "0.3.16"
"goss_version": "0.4.9"
}
```
##### Supported values for some of the arguments can be found [here](https://github.com/goss-org/goss).
Expand Down
2 changes: 1 addition & 1 deletion images/capi/packer/config/goss-args.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"goss_tests_dir": "packer/goss",
"goss_url": "",
"goss_vars_file": "packer/goss/goss-vars.yaml",
"goss_version": "0.3.16"
"goss_version": "0.4.9"
}
4 changes: 2 additions & 2 deletions images/capi/scripts/ci-goss-populate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ cd "${CAPI_ROOT}" || exit 1
source hack/utils.sh
ensure_py3

_version="v0.3.16"
_bin_url="https://github.com/aelsabbahy/goss/releases/download/${_version}/goss-linux-amd64"
_version="v0.4.9"
_bin_url="https://github.com/goss-org/goss/releases/tag/${_version}/goss-linux-amd64"

if ! command -v goss >/dev/null 2>&1; then
if [[ ${HOSTOS} == "linux" ]]; then
Expand Down