diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index da202e84..7c143c21 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -14,16 +14,16 @@ on: jobs: build: name: Build - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup Go 1.18 - uses: actions/setup-go@v2 + - name: Setup Go 1.19 + uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 'stable' - name: Cache Go modules uses: actions/cache@v2 diff --git a/go.mod b/go.mod index 99c2dce5..07d8c954 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/castai/cluster-controller -go 1.18 +go 1.19 require ( github.com/cenkalti/backoff/v4 v4.1.2