Bump versions of software used in CI tests to latest

This patch updates the versions of software used in CI tests to the latest:
- Fabric
- GO
- KIND, kubectl

Signed-off-by: Tatsuya Sato <tatsuya.sato.so@hitachi.com>
This commit is contained in:
Tatsuya Sato 2023-09-28 03:31:02 +00:00 committed by Dave Enyeart
parent bda72cac00
commit d07bac37df
5 changed files with 9 additions and 9 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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

View file

@ -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:"

View file

@ -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}