Skip to content

Commit

Permalink
Bump versions of software used in CI tests to latest
Browse files Browse the repository at this point in the history
This patch updates the versions of software used in CI tests to the latest:
- Fabric
- GO
- KIND, kubectl

Signed-off-by: Tatsuya Sato <[email protected]>
  • Loading branch information
satota2 committed Sep 29, 2023
1 parent bda72ca commit 95c7532
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/actions/fsat-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/test-network-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions full-stack-asset-transfer-guide/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand Down Expand Up @@ -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:"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 95c7532

Please sign in to comment.