diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index 2664687b..7dad99a2 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -52,7 +52,7 @@ jobs: go-version: 1.18 - name: Run e2e tests shell: bash - run: scripts/tests.e2e.sh 1.9.4 1.9.4 0.4.5 + run: scripts/tests.e2e.sh release: needs: [lint_test, unit_test, e2e_test] runs-on: ubuntu-20.04 diff --git a/scripts/tests.e2e.sh b/scripts/tests.e2e.sh index 108d773d..f93f405c 100755 --- a/scripts/tests.e2e.sh +++ b/scripts/tests.e2e.sh @@ -3,15 +3,15 @@ set -e export RUN_E2E="true" # e.g., -# ./scripts/tests.e2e.sh 1.9.4 1.9.4 0.4.5 +# ./scripts/tests.e2e.sh 1.9.5 1.9.4 0.4.7 if ! [[ "$0" =~ scripts/tests.e2e.sh ]]; then echo "must be run from repository root" exit 255 fi -DEFAULT_VERSION_1=1.9.4 +DEFAULT_VERSION_1=1.9.5 DEFAULT_VERSION_2=1.9.4 -DEFAULT_SUBNET_EVM_VERSION=0.4.5 +DEFAULT_SUBNET_EVM_VERSION=0.4.7 if [ $# == 0 ]; then VERSION_1=$DEFAULT_VERSION_1