Skip to content

Commit

Permalink
chore(deps): update Go version to 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
kangasta committed Feb 2, 2023
1 parent 14c52e9 commit 41a51e6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.19
- name: Setup Python
uses: actions/setup-python@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.19
- name: Checkout head
uses: actions/checkout@v3
- name: Run golangci-lint-action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.19
- name: Get tag version
id: git
run: echo "::set-output name=tag_version::$(make version)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.19
- name: Checkout head
uses: actions/checkout@v3
- name: Run tests
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Remove custom bash completion logic and replace it with `completion` command provided by `cobra`. To do this while supporting args with whitespace, whitespace in completions is replaced with non-breaking spaces.
- Update Go version to 1.19

## [2.4.0] - 2022-12-19
### Added
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.18-alpine3.16 as build
FROM golang:1.19-alpine3.16 as build

RUN apk add --update --no-cache ca-certificates git make

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ If something is missing from there, add an issue or PR in that repository instea
* upctl uses [UpCloud Go API SDK](https://github.com/UpCloudLtd/upcloud-go-api)
* upctl is built on [Cobra](https://cobra.dev)

You need a Go version 1.18+ installed on your development machine.
You need a Go version 1.19+ installed on your development machine.
Use `make` to build and test the CLI. Makefile help can be found:

```
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/UpCloudLtd/upcloud-cli/v2

go 1.18
go 1.19

require (
github.com/UpCloudLtd/progress v1.0.1
Expand Down

0 comments on commit 41a51e6

Please sign in to comment.