Skip to content

Commit

Permalink
Setup-go action version bump (#55)
Browse files Browse the repository at this point in the history
* Setup-go action version bump

* Bumping go version to 1.19 in go.mod

Co-authored-by: Andrej Kislovskij <[email protected]>
  • Loading branch information
andrejatcastai and Andrej Kislovskij authored Jan 20, 2023
1 parent 9546e8e commit 731d885
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 731d885

Please sign in to comment.