Skip to content

Commit

Permalink
go mod update to 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
frapposelli committed Mar 11, 2024
1 parent f9902bf commit 8c1b558
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 59 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: ['1.16']
go_version: ['1.22']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Use Go ${{ matrix.go_version }}
Expand All @@ -30,7 +30,7 @@ jobs:
bash -c "./wwhrd check"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: matrix.go_version == '1.16' && matrix.os == 'ubuntu-latest'
if: matrix.go_version == '1.22' && matrix.os == 'ubuntu-latest'
with:
token: ${{ secrets.CODECOV_KEY }}
file: ./.cover/cover.out
Expand Down
15 changes: 11 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
module github.com/frapposelli/wwhrd

go 1.15
go 1.22

require (
github.com/emicklei/dot v1.6.1
github.com/google/licensecheck v0.3.1
github.com/jessevdk/go-flags v1.5.0
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.2
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
3 changes: 0 additions & 3 deletions vendor/github.com/emicklei/dot/go.mod

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/google/licensecheck/go.mod

This file was deleted.

5 changes: 0 additions & 5 deletions vendor/github.com/jessevdk/go-flags/go.mod

This file was deleted.

2 changes: 0 additions & 2 deletions vendor/github.com/jessevdk/go-flags/go.sum

This file was deleted.

9 changes: 0 additions & 9 deletions vendor/github.com/sirupsen/logrus/go.mod

This file was deleted.

14 changes: 0 additions & 14 deletions vendor/github.com/sirupsen/logrus/go.sum

This file was deleted.

5 changes: 0 additions & 5 deletions vendor/gopkg.in/yaml.v2/go.mod

This file was deleted.

5 changes: 0 additions & 5 deletions vendor/gopkg.in/yaml.v3/go.mod

This file was deleted.

18 changes: 11 additions & 7 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,35 +1,39 @@
# github.com/davecgh/go-spew v1.1.1
## explicit
github.com/davecgh/go-spew/spew
# github.com/emicklei/dot v1.6.1
## explicit
## explicit; go 1.13
github.com/emicklei/dot
# github.com/google/licensecheck v0.3.1
## explicit
## explicit; go 1.12
github.com/google/licensecheck
github.com/google/licensecheck/internal/match
# github.com/jessevdk/go-flags v1.5.0
## explicit
## explicit; go 1.15
github.com/jessevdk/go-flags
# github.com/kr/text v0.2.0
## explicit
# github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e
## explicit
## explicit; go 1.12
# github.com/pmezard/go-difflib v1.0.0
## explicit
github.com/pmezard/go-difflib/difflib
# github.com/sirupsen/logrus v1.9.3
## explicit
## explicit; go 1.13
github.com/sirupsen/logrus
# github.com/stretchr/testify v1.8.2
## explicit
## explicit; go 1.13
github.com/stretchr/testify/assert
# golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
## explicit; go 1.17
golang.org/x/sys/internal/unsafeheader
golang.org/x/sys/unix
golang.org/x/sys/windows
# gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f
## explicit
# gopkg.in/yaml.v2 v2.4.0
## explicit
## explicit; go 1.15
gopkg.in/yaml.v2
# gopkg.in/yaml.v3 v3.0.1
## explicit
gopkg.in/yaml.v3

0 comments on commit 8c1b558

Please sign in to comment.