Skip to content

Commit

Permalink
ci: update actions/setup-go version to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed Nov 22, 2022
1 parent 55f917d commit d13a35f
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '>=1.19'

- name: Check formatting
run: |
Expand All @@ -26,9 +28,13 @@ jobs:
needs: [qa]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '>=1.19'

- name: Build
run: |
go build -v .
Expand All @@ -49,7 +55,9 @@ jobs:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '>=1.19'

- name: Build
run: |
Expand All @@ -67,7 +75,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down

0 comments on commit d13a35f

Please sign in to comment.