Skip to content

Commit

Permalink
fix(ci): for test builder
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <[email protected]>
  • Loading branch information
dipankardas011 committed Oct 25, 2023
1 parent 8fe836d commit f17bc79
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/testBuilder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20' # The Go version to download (if necessary) and use.
go-version: 1.21.0
- run: go version
- name: Build and install the latest version
run: |
Expand All @@ -31,9 +32,10 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20' # The Go version to download (if necessary) and use.
go-version: 1.21.0
- run: go version
# TODO: add support to check for the M1 chip as well
- name: Build and install the latest version on intel chip
Expand All @@ -45,9 +47,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20' # The Go version to download (if necessary) and use.
go-version: 1.21.0
- run: go version
- name: Build and install the latest version
run: |
Expand Down

0 comments on commit f17bc79

Please sign in to comment.