From 344ec46bb036c88edca52f7cdf577dff72166e1b Mon Sep 17 00:00:00 2001 From: Evan Wallace Date: Fri, 15 Oct 2021 14:40:17 -0400 Subject: [PATCH] update go 1.17.1 => 1.17.2 --- .github/workflows/ci.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d853723ed0..5019bc8970c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: 1.17.1 + go-version: 1.17.2 id: go - name: Setup Node.js environment diff --git a/Makefile b/Makefile index 1d6316173e6..cfe2b495058 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ test-all: test-prepublish: check-go-version test-all test-preact-splitting test-sucrase bench-rome-esbuild bench-readmin-esbuild test-esprima test-rollup check-go-version: - @go version | grep ' go1\.17\.1 ' || (echo 'Please install Go version 1.17.1' && false) + @go version | grep ' go1\.17\.2 ' || (echo 'Please install Go version 1.17.2' && false) # This "ESBUILD_RACE" variable exists at the request of a user on GitHub who # wants to run "make test" on an unsupported version of macOS (version 10.9).