Skip to content

Commit

Permalink
Update actions/setup-go to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
fhs committed May 22, 2023
1 parent 2e491fb commit 1d26b02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cross-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
go-version: ['1.19', '1.20']
platform: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.platform }}
Expand All @@ -14,7 +14,7 @@ jobs:

steps:
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
go-version: ['1.19', '1.20']
platform: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.platform }}
Expand All @@ -14,7 +14,7 @@ jobs:

steps:
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

Expand Down

0 comments on commit 1d26b02

Please sign in to comment.