From 7a1cce32eda8b0e4e784a009c68e676822157828 Mon Sep 17 00:00:00 2001 From: paolino Date: Fri, 19 Apr 2024 11:15:24 +0000 Subject: [PATCH] Bump runtime references to node to 8.9.2 --- .github/workflows/docker_linux.yml | 4 ++-- .github/workflows/e2e-docker.yml | 4 ++-- README.md | 2 +- scripts/release-candidate.sh | 2 +- scripts/sanchonet.sh | 2 +- test/e2e/README.md | 2 +- test/e2e/docker_compose.sh | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker_linux.yml b/.github/workflows/docker_linux.yml index b1235164692..4b199c55184 100644 --- a/.github/workflows/docker_linux.yml +++ b/.github/workflows/docker_linux.yml @@ -7,7 +7,7 @@ on: nodeTag: description: 'Node docker image tag' required: true - default: '8.9.1' + default: '8.9.2' walletTag: description: 'Wallet docker image tag' required: true @@ -41,7 +41,7 @@ jobs: docker-compose logs > logs/docker-compose.log docker-compose down env: - NODE_TAG: ${{ github.event.inputs.nodeTag || '8.9.1'}} + NODE_TAG: ${{ github.event.inputs.nodeTag || '8.9.2'}} WALLET_TAG: ${{ github.event.inputs.walletTag || 'rc-latest'}} NETWORK: preprod WALLET_DB: /tmp/wallet-db diff --git a/.github/workflows/e2e-docker.yml b/.github/workflows/e2e-docker.yml index e7ce239ca3d..062730ddca5 100644 --- a/.github/workflows/e2e-docker.yml +++ b/.github/workflows/e2e-docker.yml @@ -8,7 +8,7 @@ on: nodeTag: description: 'Node docker-image tag to use' required: true - default: '8.9.1' + default: '8.9.2' walletTag: description: 'Wallet docker-image tag to use' required: true @@ -33,7 +33,7 @@ jobs: TESTS_E2E_FIXTURES: ${{ secrets.TESTS_E2E_FIXTURES }} BUILDKITE_API_TOKEN: ${{ secrets.BUILDKITE_TOKEN_READ_BUILDS_ARTIFACTS }} WALLET: ${{ github.event.inputs.walletTag || 'rc-latest' }} - NODE: ${{ github.event.inputs.nodeTag || '8.9.1' }} + NODE: ${{ github.event.inputs.nodeTag || '8.9.2' }} TESTS_E2E_TOKEN_METADATA: https://metadata.world.dev.cardano.org/ TAGS: ${{ github.event.inputs.tags || 'all' }} E2E_DOCKER_RUN: 1 diff --git a/README.md b/README.md index c579db94e51..002bf8ca0f6 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ export NODE_DB=`pwd`/node-db export WALLET_DB=`pwd`/wallet-db # set the node tag and wallet tag to compatible versions -export NODE_TAG=8.9.1 +export NODE_TAG=8.9.2 export WALLET_TAG=2024.3.27 # set a port for the wallet server diff --git a/scripts/release-candidate.sh b/scripts/release-candidate.sh index e4f2db28358..025e8c60b49 100755 --- a/scripts/release-candidate.sh +++ b/scripts/release-candidate.sh @@ -34,7 +34,7 @@ echo "OLD_GIT_TAG=$OLD_GIT_TAG" OLD_CABAL_VERSION=$(tag_cabal_ver "$OLD_GIT_TAG") echo "OLD_CABAL_VERSION=$OLD_CABAL_VERSION" -CARDANO_NODE_TAG="8.9.1" +CARDANO_NODE_TAG="8.9.2" echo "CARDANO_NODE_TAG=$CARDANO_NODE_TAG" git checkout "$BASE_COMMIT" diff --git a/scripts/sanchonet.sh b/scripts/sanchonet.sh index 66e996cfe56..c0c1ae43dcf 100755 --- a/scripts/sanchonet.sh +++ b/scripts/sanchonet.sh @@ -3,7 +3,7 @@ set -euo pipefail export WALLET_TAG=rc-latest -export NODE_TAG=8.9.1 +export NODE_TAG=8.9.2 export WALLET_PORT=8090 export NETWORK=sanchonet export WALLET_DB=/tmp/cardano-wallet-sanchonet.db diff --git a/test/e2e/README.md b/test/e2e/README.md index 7899f0e4d71..714132ef648 100644 --- a/test/e2e/README.md +++ b/test/e2e/README.md @@ -73,7 +73,7 @@ One can also start tests against cardano-wallet docker. There is docker-compose- >NETWORK=preprod \ >TESTS_E2E_TOKEN_METADATA=https://metadata.world.dev.cardano.org/ \ >WALLET=dev-master \ ->NODE=8.9.1 \ +>NODE=8.9.2 \ >NODE_CONFIG_PATH=`pwd`/state/configs/$NETWORK \ >DATA=`pwd`/state/node_db/$NETWORK >docker-compose -f docker-compose-test.yml up diff --git a/test/e2e/docker_compose.sh b/test/e2e/docker_compose.sh index c8653d0a3db..48d83e859af 100755 --- a/test/e2e/docker_compose.sh +++ b/test/e2e/docker_compose.sh @@ -3,7 +3,7 @@ NETWORK=preprod \ TESTS_E2E_TOKEN_METADATA=https://metadata.world.dev.cardano.org/ \ WALLET=dev-master \ -NODE=8.9.1 \ +NODE=8.9.2 \ NODE_CONFIG_PATH=`pwd`/state/configs/$NETWORK \ DATA=`pwd`/state/node_db/$NETWORK \ WALLET_DATA=`pwd`/state/wallet_db/$NETWORK \