Skip to content

Commit

Permalink
ci: upgrade ci setup go
Browse files Browse the repository at this point in the history
fixes: 83a4373
  • Loading branch information
mkungla committed Mar 9, 2022
1 parent 0103f7c commit 2147901
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
test:
strategy:
matrix:
go: ['1.16', '1.17', '1.18.0-rc1']
go: ['1.16', '1.17', '1.18.0-rc.1']
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
stable: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
test:
strategy:
matrix:
go: ['1.16', '1.17', '1.18.0-rc1']
go: ['1.16', '1.17', '1.18.0-rc.1']
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
stable: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
test:
strategy:
matrix:
version: ['1.16', '1.17', '1.18.0-rc1']
go: ['1.16', '1.17', '1.18.0-rc.1']
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}
go-version: ${{ matrix.go }}
stable: false
- name: Checkout code
uses: actions/checkout@v1
Expand Down

0 comments on commit 2147901

Please sign in to comment.