Skip to content

Commit

Permalink
Merge pull request #162 from fatih/update-ci-workflow
Browse files Browse the repository at this point in the history
Update CI workflow
  • Loading branch information
fatih committed Jul 5, 2022
2 parents 76114b1 + 3553f6b commit acd5f3b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest
steps:

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

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Run go mod tidy
run: |
Expand All @@ -40,10 +40,10 @@ jobs:
run: "go vet ./..."

- name: Staticcheck
uses: dominikh/staticcheck-action@v1.1.0
uses: dominikh/staticcheck-action@v1.2.0
with:
version: "2021.1.1"
version: "2022.1.2"
install-go: false

- name: Build
run: go build ./...
run: go build ./...

0 comments on commit acd5f3b

Please sign in to comment.