Skip to content

Commit

Permalink
Update github action to use go 21 (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
worldtiki authored Dec 18, 2023
1 parent 32ef5cc commit e15fabc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21
- name: Check out code
uses: actions/checkout@v3
- name: Build
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ alive
ready
debug
mittens
oryxBuildBinary

website/translated_docs
website/build/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19 as builder
FROM golang:1.21 as builder
# Create required dirs and copy files
RUN mkdir -p /mittens
COPY ./ /mittens/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ We provide a [Makefile](Makefile) which can be used to generate an executable bi

### Binary

To build the binary make sure you've installed [Go 1.19](https://golang.org/dl/).
To build the binary make sure you've installed [Go 1.21](https://golang.org/dl/).

#### Build binary executable & run tests

Expand Down
2 changes: 1 addition & 1 deletion docs/installation/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ We provide a [Makefile](https://github.com/ExpediaGroup/mittens/blob/main/Makefi

### Binary

To build the binary make sure you've installed [Go 1.19](https://golang.org/dl/).
To build the binary make sure you've installed [Go 1.21](https://golang.org/dl/).

#### Build binary executable & run unit tests

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)

go 1.19
go 1.21

0 comments on commit e15fabc

Please sign in to comment.