Skip to content

Commit

Permalink
ci: use actions/setup-go@v5
Browse files Browse the repository at this point in the history
  • Loading branch information
t2y committed Apr 22, 2024
1 parent f750048 commit f613383
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [
go: [
'1.22',
'1.21',
]

steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
go-version: ${{ matrix.go }}
- name: Display Go version
run: go version

Expand Down

0 comments on commit f613383

Please sign in to comment.