Skip to content

Commit

Permalink
Fix GH action warning by swapping checkout and setup-go
Browse files Browse the repository at this point in the history
  • Loading branch information
roger2hk committed Aug 27, 2024
1 parent e70cb06 commit bb32242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit bb32242

Please sign in to comment.