Skip to content

Commit

Permalink
ci: Use go 1.18.10/1.19.5 for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
cetteup committed Jan 16, 2023
1 parent 61d672c commit 89c47d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ jobs:
name: lint
strategy:
matrix:
go-version: [ 1.18, 1.19 ]
go-version: [ 1.18.10, 1.19.5 ]
os: [ windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.45.2
version: latest
only-new-issues: true
unit-test:
name: unit-test
strategy:
matrix:
go-version: [ 1.18, 1.19 ]
go-version: [ 1.18.10, 1.19.5 ]
os: [ windows-latest ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.18
goversion: 1.19.5
project_path: cmd/joinme.click-launcher
pre_command: go install github.com/josephspurrier/goversioninfo/cmd/[email protected] && pushd cmd/joinme.click-launcher && go generate && popd
extra_files: config.example.yaml
Expand Down

0 comments on commit 89c47d9

Please sign in to comment.