From e63d05824735b798bc59a33fbff05a080b60d5ac Mon Sep 17 00:00:00 2001 From: Yusuke Suzuki Date: Sat, 2 Oct 2021 10:04:22 +0900 Subject: [PATCH] test: update go to 1.15.15 Update go to 1.15.15 which is the latest of 1.15 because linux-amd64-fmt fails with go 1.15.13. Signed-off-by: Yusuke Suzuki --- .github/workflows/tests.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 1f51baab0c2..c8cb9a5c570 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - go: [1.12.17, 1.15.13] + go: [1.12.17, 1.15.15] target: - linux-amd64-fmt - linux-amd64-integration-1-cpu @@ -22,17 +22,17 @@ jobs: target: linux-amd64-grpcproxy - go: 1.12.17 target: linux-386-unit - - go: 1.15.13 + - go: 1.15.15 target: linux-amd64-integration-1-cpu - - go: 1.15.13 + - go: 1.15.15 target: linux-amd64-integration-2-cpu - go: 1.12.17 target: linux-amd64-unit - - go: 1.15.13 + - go: 1.15.15 target: linux-amd64-coverage - go: 1.12.17 target: linux-amd64-fmt - - go: 1.15.13 + - go: 1.15.15 target: linux-386-unit steps: - uses: actions/checkout@v2 @@ -44,7 +44,7 @@ jobs: TARGET: ${{ matrix.target }} GO_VERSION: ${{ matrix.go }} run: | - RACE='true'; if [[ ${GO_VERSION} == 1.15.13 ]]; then echo 'setting race off'; RACE='false'; fi + RACE='true'; if [[ ${GO_VERSION} == 1.15.15 ]]; then echo 'setting race off'; RACE='false'; fi echo "${TARGET}" case "${TARGET}" in linux-amd64-fmt)