Skip to content

Commit

Permalink
Use Go 1.15 for the build/test/release (#196)
Browse files Browse the repository at this point in the history
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
  • Loading branch information
jpkrohling authored Feb 11, 2021
1 parent d32ec0f commit 70e854c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@ jobs:
name: Unit tests
runs-on: ubuntu-20.04
steps:

- name: Set up Go 1.15
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
runs-on: ubuntu-20.04
steps:

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15

- name: Check out code into the Go module directory
uses: actions/checkout@v2

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ jobs:
unit-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v1
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.14.4'
go-version: 1.15

- uses: actions/checkout@v1

- name: "install kubebuilder"
run: ./hack/install-kubebuilder.sh

- uses: jpkrohling/setup-operator-sdk@v1.0.2
- uses: jpkrohling/setup-operator-sdk@v1.1.0
with:
operator-sdk-version: v1.4.0

Expand Down

0 comments on commit 70e854c

Please sign in to comment.