Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Keloran committed Dec 10, 2023
1 parent 7ce12eb commit 7ef66db
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 23 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,3 @@ jobs:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# test:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/setup-go@v1
# with:
# go-version: 1.16.x
# - uses: actions/checkout@v1
# with:
# fetch-depth: 1
# - name: test
# run: go test -v -race -bench=./... -benchmem -timeout=120s -bench=./... ./...
16 changes: 8 additions & 8 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v4
with:
go-version: 1.16.x
- uses: actions/checkout@v1
go-version: 1.21.x
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: golangci/golangci-lint-action@v2
with:
version: v1.48
args: --config ./configs/golangci.yml
- name: test
run: go test -v -race -bench=./... -benchmem -timeout=120s -bench=./... ./...
automerge:
needs: test
needs:
- test
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
module github.com/bugfixes/go-bugfixes

go 1.16
go 1.21

require (
github.com/go-logfmt/logfmt v0.6.0
github.com/stretchr/testify v1.8.2
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
3 changes: 1 addition & 2 deletions logs/logs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ import (
"fmt"
"testing"

"github.com/stretchr/testify/assert"

"github.com/bugfixes/go-bugfixes/logs"
"github.com/stretchr/testify/assert"
)

func TestConvertLevelFromString(t *testing.T) {
Expand Down

0 comments on commit 7ef66db

Please sign in to comment.