From bb32242bb93d98b6c65d9c992ccabb9ca0cdc0de Mon Sep 17 00:00:00 2001 From: Roger Ng Date: Tue, 27 Aug 2024 17:14:25 +0000 Subject: [PATCH] Fix GH action warning by swapping checkout and setup-go --- .github/workflows/go_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go_test.yml b/.github/workflows/go_test.yml index b38864db..e66a666b 100644 --- a/.github/workflows/go_test.yml +++ b/.github/workflows/go_test.yml @@ -14,10 +14,10 @@ jobs: runs-on: ${{ matrix.os }} steps: + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - run: go test -v -race ./... test-mysql: