Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade zerolog adapter deps versions #12

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/tag_adapters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: "${{ secrets.ACCESS_TOKEN }}"
ref: "main"

Expand Down Expand Up @@ -56,7 +55,7 @@ jobs:

- name: Pull changes
if: steps.check.outputs.any_changed == 'true'
run: git fetch origin --tags
run: git fetch --tags origin '+refs/tags/adapters/${{ matrix.adapter }}/*:refs/tags/adapters/${{ matrix.adapter }}/*'

- id: cz
name: Create bump and changelog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag_logger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Pull changes
if: steps.check.outputs.any_changed == 'true'
run: git fetch origin --tags
run: git fetch --tags origin '+refs/tags/v*:refs/tags/v*'

- id: cz
name: Create bump and changelog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag_modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Pull changes
if: steps.check.outputs.any_changed == 'true'
run: git fetch origin --tags
run: git fetch --tags origin '+refs/tags/${{ matrix.module }}/*:refs/tags/${{ matrix.module }}/*'

- id: cz
name: Create bump and changelog
Expand Down
9 changes: 2 additions & 7 deletions adapters/zerolog/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@ module github.com/danteay/golog/adapters/zerolog

go 1.21

replace (
github.com/danteay/golog/fields => ../../fields
github.com/danteay/golog/levels => ../../levels
)

require (
github.com/danteay/golog/fields v0.0.0
github.com/danteay/golog/levels v0.0.0
github.com/danteay/golog/fields v0.1.0
github.com/danteay/golog/levels v0.1.0
github.com/rs/zerolog v1.32.0
github.com/stretchr/testify v1.9.0
)
Expand Down
4 changes: 4 additions & 0 deletions adapters/zerolog/go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
github.com/danteay/golog/fields v0.1.0 h1:/W3Gh3PrVoJsY53sear+yzyLRkIMkM039lOfSNfUFj0=
github.com/danteay/golog/fields v0.1.0/go.mod h1:ACO2Sinx9OSYgwgUVTSZtWaT1q0VzHes6cDVgJtOS4Q=
github.com/danteay/golog/levels v0.1.0 h1:vJqNEKlij90z6b7PSq6bqxmV9KbKn1tj8nlkASl0r14=
github.com/danteay/golog/levels v0.1.0/go.mod h1:eWSbOC3D2TEvsl/Ngmyh1NngmX9ZNnywPTa5kVpN8Ew=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
Expand Down