Skip to content

Commit

Permalink
Go 1.22 and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ipmb committed Mar 25, 2024
1 parent e59e24f commit bd924d7
Show file tree
Hide file tree
Showing 9 changed files with 98 additions and 92 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/databases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: "1.22"
-
name: Build
run: go build -o bin/apppack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: "1.22"
-
name: Build
run: go build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: "1.22"
- name: Test
run: go test ./... -v
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: "1.22"
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
Expand Down
6 changes: 2 additions & 4 deletions .golangci.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go = "1.19"
go = "1.22"
sort-results = true

[linters]
Expand Down Expand Up @@ -44,8 +44,6 @@ exclude = [
"Error return value of `\\(\\*github\\.com/spf13/pflag\\.FlagSet\\)\\.Mark(Hidden|Deprecated)` is not checked",
"use of `fmt\\.Print(|f|ln)` forbidden by pattern"
]

[run]
skip-dirs = [
exclude-dirs = [
"version"
]
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
golang 1.22.1
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

* Upgraded to Go 1.22 and updated dependencies

## [4.1.0] - 2023-01-10

### Added
Expand Down
48 changes: 24 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
module github.com/apppackio/apppack

go 1.19
go 1.22

require (
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/TylerBrock/saw v0.2.2
github.com/apparentlymart/go-cidr v1.1.0
github.com/aws/aws-sdk-go v1.44.176
github.com/briandowns/spinner v1.20.0
github.com/dustin/go-humanize v1.0.0
github.com/getsentry/sentry-go v0.19.0
github.com/google/uuid v1.3.0
github.com/aws/aws-sdk-go v1.51.7
github.com/briandowns/spinner v1.23.0
github.com/dustin/go-humanize v1.0.1
github.com/getsentry/sentry-go v0.27.0
github.com/google/uuid v1.6.0
github.com/jkueh/go-aws-console-url v0.0.1
github.com/juju/ansiterm v1.0.0
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/mattn/go-isatty v0.0.17
github.com/mum4k/termdash v0.17.0
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.6.1
github.com/mattn/go-isatty v0.0.20
github.com/mum4k/termdash v0.20.0
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.1
github.com/stretchr/testify v1.8.2
gopkg.in/square/go-jose.v2 v2.6.0
)

require github.com/cli/cli/v2 v2.25.1 // indirect
require github.com/cli/cli/v2 v2.25.1

require (
github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2 // indirect
github.com/cli/safeexec v1.0.1
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/gdamore/tcell/v2 v2.5.4 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/gdamore/tcell/v2 v2.7.4 // indirect
github.com/hashicorp/go-version v1.6.0
github.com/hokaccha/go-prettyjson v0.0.0-20190818114111-108c894c2c0e // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
Expand All @@ -43,16 +43,16 @@ require (
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/lunixbochs/vtclean v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
golang.org/x/crypto v0.5.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/text v0.14.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)

Expand Down
Loading

0 comments on commit bd924d7

Please sign in to comment.