Use checkout/setup v3 actions

This commit is contained in:
Dan Sosedoff 2022-11-14 16:14:50 -06:00
parent 9bfec11b48
commit a5143ad9d3
No known key found for this signature in database
GPG Key ID: 26186197D282B164

View File

@ -26,10 +26,10 @@ jobs:
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- run: go mod download
@ -64,10 +64,10 @@ jobs:
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- run: go mod download