Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github action to use go 21 #334

Merged
merged 4 commits into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading