Skip to content

Commit

Permalink
Update Go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacalz committed Jan 19, 2025
1 parent 4662f12 commit 9d3f6e0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: WillAbides/setup-go-faster@v1.10.1
- uses: WillAbides/setup-go-faster@v1
with:
go-version: '1.21.x'
go-version: 'stable'

- name: Install static analysis tools
run: |
go install github.com/securego/gosec/v2/cmd/gosec@v2.17.0
go install github.com/fzipp/gocyclo/cmd/gocyclo@v0.6.0
go install honnef.co/go/tools/cmd/staticcheck@v0.4.6
go install mvdan.cc/gofumpt@v0.5.0
go install github.com/securego/gosec/v2/cmd/gosec@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
go install mvdan.cc/gofumpt@latest
- name: Vet
run: go vet ./...
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ['1.19.x', '1.21.x']
go-version: ['1.21.x', 'stable']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: WillAbides/setup-go-faster@v1.10.1
- uses: WillAbides/setup-go-faster@v1
with:
go-version: ${{ matrix.go-version }}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/rymdport/go-qrcode

go 1.19
go 1.21

0 comments on commit 9d3f6e0

Please sign in to comment.