Skip to content

Commit

Permalink
Merge pull request #46 from vinyl-linux/dependabot/go_modules/golang.…
Browse files Browse the repository at this point in the history
…org/x/text-0.3.8

Bump golang.org/x/text from 0.3.7 to 0.3.8
  • Loading branch information
jspc authored Feb 23, 2023
2 parents d85c2a5 + 5909fd5 commit 975a1b5
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 139 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: '>=1.20.0'

- name: fuzz tests
run: go test --tags=fuzz -run TestFuzzServer_Install -v
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: '>=1.20.0'

- name: Lint
uses: Jerome1337/[email protected]
Expand All @@ -33,26 +33,27 @@ jobs:
run: sudo make install

- name: Convert coverage to lcov
uses: jandelgado/[email protected].8
uses: jandelgado/[email protected].9

- name: Coveralls
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov

sonarcloud:
runs-on: ubuntu-latest
if: ${{ github.triggering_actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: '>=1.20.0'

- name: Test
run: go test -covermode=count -coverprofile=coverage.out ./...
Expand Down
6 changes: 0 additions & 6 deletions Dockerfile

This file was deleted.

35 changes: 18 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
module github.com/vinyl-linux/vin

go 1.17
go 1.20

require (
github.com/fatih/color v1.13.0
github.com/fatih/color v1.14.1
github.com/gofrs/uuid v4.0.0+incompatible
github.com/google/gofuzz v1.2.0
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
github.com/h2non/filetype v1.1.3
github.com/hashicorp/go-memdb v1.3.2
github.com/hashicorp/go-version v1.4.0
github.com/hashicorp/go-memdb v1.3.4
github.com/hashicorp/go-version v1.6.0
github.com/mitchellh/go-homedir v1.1.0
github.com/pelletier/go-toml/v2 v2.0.0-beta.6
github.com/pelletier/go-toml/v2 v2.0.6
github.com/spf13/cobra v1.1.1
github.com/spf13/viper v1.7.1
github.com/zeebo/blake3 v0.2.2
go.uber.org/zap v1.21.0
google.golang.org/grpc v1.44.0
google.golang.org/protobuf v1.27.1
github.com/zeebo/blake3 v0.2.3
go.uber.org/zap v1.24.0
google.golang.org/grpc v1.53.0
google.golang.org/protobuf v1.28.1
)

require (
Expand All @@ -27,22 +27,23 @@ require (
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220217155828-d576998c0009 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec // indirect
gopkg.in/ini.v1 v1.51.0 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
Loading

0 comments on commit 975a1b5

Please sign in to comment.