mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
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:
parent
bda72cac00
commit
d07bac37df
5 changed files with 9 additions and 9 deletions
4
.github/actions/fsat-setup/action.yaml
vendored
4
.github/actions/fsat-setup/action.yaml
vendored
|
|
@ -12,10 +12,10 @@ inputs:
|
||||||
default: v0.25.3
|
default: v0.25.3
|
||||||
fabric-version:
|
fabric-version:
|
||||||
description: Version of Hyperledger Fabric
|
description: Version of Hyperledger Fabric
|
||||||
default: '2.5.1'
|
default: '2.5.4'
|
||||||
ca-version:
|
ca-version:
|
||||||
description: Version of Hyperledger Fabric CA
|
description: Version of Hyperledger Fabric CA
|
||||||
default: '1.5.6'
|
default: '1.5.7'
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ description: Set up the Test Network Runtime
|
||||||
inputs:
|
inputs:
|
||||||
go-version:
|
go-version:
|
||||||
description: Version of go
|
description: Version of go
|
||||||
default: 1.19.6
|
default: 1.20.7
|
||||||
node-version:
|
node-version:
|
||||||
description: Version of node
|
description: Version of node
|
||||||
default: 18.x
|
default: 18.x
|
||||||
|
|
@ -12,10 +12,10 @@ inputs:
|
||||||
default: 11.x
|
default: 11.x
|
||||||
fabric-version:
|
fabric-version:
|
||||||
description: Version of Hyperledger Fabric
|
description: Version of Hyperledger Fabric
|
||||||
default: 2.5.1
|
default: 2.5.4
|
||||||
ca-version:
|
ca-version:
|
||||||
description: Version of Hyperledger Fabric CA
|
description: Version of Hyperledger Fabric CA
|
||||||
default: 1.5.6
|
default: 1.5.7
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
|
|
|
||||||
2
.github/workflows/lint.yaml
vendored
2
.github/workflows/lint.yaml
vendored
|
|
@ -16,7 +16,7 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GO_VER: 1.19.6
|
GO_VER: 1.20.7
|
||||||
NODE_VER: 18.x
|
NODE_VER: 18.x
|
||||||
JAVA_VER: 11.x
|
JAVA_VER: 11.x
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ else
|
||||||
echo -e "${SUCCESS} Docker found:\t$(cat /tmp/cmdpath)"
|
echo -e "${SUCCESS} Docker found:\t$(cat /tmp/cmdpath)"
|
||||||
fi
|
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
|
if ! command -v kubectl &> /tmp/cmdpath
|
||||||
then
|
then
|
||||||
echo "${WARN} Please install kubectl if you want to use k8s; suggested install commands:"
|
echo "${WARN} Please install kubectl if you want to use k8s; suggested install commands:"
|
||||||
|
|
@ -46,7 +46,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install kind
|
# Install kind
|
||||||
KIND_VERSION=0.14.0
|
KIND_VERSION=0.20.0
|
||||||
if ! command -v kind &> /tmp/cmdpath
|
if ! command -v kind &> /tmp/cmdpath
|
||||||
then
|
then
|
||||||
echo "${WARN} Please install kind; suggested install commands:"
|
echo "${WARN} Please install kind; suggested install commands:"
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ set -eo pipefail
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
KIND_CLUSTER_NAME=kind
|
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_ADDRESS=${KIND_API_SERVER_ADDRESS:-127.0.0.1}
|
||||||
KIND_API_SERVER_PORT=${KIND_API_SERVER_PORT:-8888}
|
KIND_API_SERVER_PORT=${KIND_API_SERVER_PORT:-8888}
|
||||||
CONTAINER_REGISTRY_NAME=${CONTAINER_REGISTRY_NAME:-kind-registry}
|
CONTAINER_REGISTRY_NAME=${CONTAINER_REGISTRY_NAME:-kind-registry}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue