diff --git a/.github/actions/fsat-setup/action.yaml b/.github/actions/fsat-setup/action.yaml index 4adb50b8..8b0ff661 100644 --- a/.github/actions/fsat-setup/action.yaml +++ b/.github/actions/fsat-setup/action.yaml @@ -12,10 +12,10 @@ inputs: default: v0.25.3 fabric-version: description: Version of Hyperledger Fabric - default: '2.5.1' + default: '2.5.4' ca-version: description: Version of Hyperledger Fabric CA - default: '1.5.6' + default: '1.5.7' runs: using: "composite" diff --git a/.github/actions/test-network-setup/action.yaml b/.github/actions/test-network-setup/action.yaml index eb4eb392..af339aae 100644 --- a/.github/actions/test-network-setup/action.yaml +++ b/.github/actions/test-network-setup/action.yaml @@ -3,7 +3,7 @@ description: Set up the Test Network Runtime inputs: go-version: description: Version of go - default: 1.19.6 + default: 1.20.7 node-version: description: Version of node default: 18.x @@ -12,10 +12,10 @@ inputs: default: 11.x fabric-version: description: Version of Hyperledger Fabric - default: 2.5.1 + default: 2.5.4 ca-version: description: Version of Hyperledger Fabric CA - default: 1.5.6 + default: 1.5.7 runs: using: "composite" diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 73795616..c31f3e8c 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -16,7 +16,7 @@ concurrency: cancel-in-progress: true env: - GO_VER: 1.19.6 + GO_VER: 1.20.7 NODE_VER: 18.x JAVA_VER: 11.x diff --git a/full-stack-asset-transfer-guide/check.sh b/full-stack-asset-transfer-guide/check.sh index 459843f4..c3ec4641 100755 --- a/full-stack-asset-transfer-guide/check.sh +++ b/full-stack-asset-transfer-guide/check.sh @@ -12,7 +12,7 @@ else echo -e "${SUCCESS} Docker found:\t$(cat /tmp/cmdpath)" fi -KUBECTL_VERSION=v1.24.4 # $(curl -L -s https://dl.k8s.io/release/stable.txt) +KUBECTL_VERSION=v1.28.2 # $(curl -L -s https://dl.k8s.io/release/stable.txt) if ! command -v kubectl &> /tmp/cmdpath then echo "${WARN} Please install kubectl if you want to use k8s; suggested install commands:" @@ -46,7 +46,7 @@ else fi # Install kind -KIND_VERSION=0.14.0 +KIND_VERSION=0.20.0 if ! command -v kind &> /tmp/cmdpath then echo "${WARN} Please install kind; suggested install commands:" diff --git a/full-stack-asset-transfer-guide/infrastructure/kind_with_nginx.sh b/full-stack-asset-transfer-guide/infrastructure/kind_with_nginx.sh index 82bba900..39ac1a58 100755 --- a/full-stack-asset-transfer-guide/infrastructure/kind_with_nginx.sh +++ b/full-stack-asset-transfer-guide/infrastructure/kind_with_nginx.sh @@ -21,7 +21,7 @@ set -eo pipefail set -x KIND_CLUSTER_NAME=kind -KIND_CLUSTER_IMAGE=${KIND_CLUSTER_IMAGE:-kindest/node:v1.24.4} # Important! k8s v1.25.0 brings breaking changes. +KIND_CLUSTER_IMAGE=${KIND_CLUSTER_IMAGE:-kindest/node:v1.28.0} # Important! k8s v1.25.0 brings breaking changes. KIND_API_SERVER_ADDRESS=${KIND_API_SERVER_ADDRESS:-127.0.0.1} KIND_API_SERVER_PORT=${KIND_API_SERVER_PORT:-8888} CONTAINER_REGISTRY_NAME=${CONTAINER_REGISTRY_NAME:-kind-registry}