Skip to content

Commit

Permalink
chore: bump dependencies and go version
Browse files Browse the repository at this point in the history
Signed-off-by: Gabor Boros <gabor.brs@gmail.com>
  • Loading branch information
gabor-boros committed Jun 12, 2024
1 parent 6d034b3 commit 43e68dc
Show file tree
Hide file tree
Showing 6 changed files with 89 additions and 497 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build

'on':
"on":
push:
branches:
- main
Expand All @@ -13,18 +13,18 @@ jobs:
strategy:
matrix:
go:
- '^1.20'
- "^1.22"
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: '${{ matrix.os }}'
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '${{ matrix.go }}'
go-version: "${{ matrix.go }}"
- name: Prerequisites
run: make prerequisites
- name: Lint
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

All notable changes to this project will be documented in this file.

## [unreleased]
## [0.3.4] - 2024-06-12

**Miscellaneous Tasks**

- Update dependencies ([11850d8](/~https://github.com/gabor-boros/minutes/commit/11850d888de888275f3eb814a992a08f9ae5068a))
- Bump dependencies and go version ([a839272](/~https://github.com/gabor-boros/minutes/commit/a839272b24e878e5ba782016abd7aaac682b9219))

## [0.3.3] - 2023-02-27

Expand Down Expand Up @@ -188,3 +189,4 @@ All notable changes to this project will be documented in this file.
- Do not run docs deploy on pull requests ([637bb6e](/~https://github.com/gabor-boros/minutes/commit/637bb6ebbb7e7a3800ca07ce7d23353b3ef60a48))
- Replace PR welcome bot ([b4b7291](/~https://github.com/gabor-boros/minutes/commit/b4b729126fa6f068e2680f71e1172c08d938caf4))


4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ format: ## Run formatter on the project
goreturns -b -local -p -w -e -l .

lint: format ## Run linters on the project
govulncheck -v ./...
golangci-lint run --timeout 5m -E golint -e '(struct field|type|method|func) [a-zA-Z`]+ should be [a-zA-Z`]+'
govulncheck ./...
golangci-lint run --timeout 5m -E revive -e '(struct field|type|method|func) [a-zA-Z`]+ should be [a-zA-Z`]+'
gosec -quiet ./...

test: deps ## Run tests
Expand Down
39 changes: 22 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,32 +1,37 @@
module github.com/gabor-boros/minutes

go 1.20
go 1.22

require (
github.com/jedib0t/go-pretty/v6 v6.4.6
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.15.0
github.com/stretchr/testify v1.8.1
github.com/jedib0t/go-pretty/v6 v6.5.9
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.9.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/text v0.9.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/term v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 43e68dc

Please sign in to comment.