Skip to content

Commit

Permalink
fix: fix module path to match version
Browse files Browse the repository at this point in the history
  • Loading branch information
Tochemey committed May 25, 2024
1 parent 67d7f2b commit f6b9598
Show file tree
Hide file tree
Showing 35 changed files with 155 additions and 155 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN}}
- uses: earthly/actions/setup-earthly@v1
- uses: earthly/actions/setup-earthly@v2
with:
version: v0.7.19
- name: Earthly version
Expand All @@ -52,7 +52,7 @@ jobs:
files: ./coverage.out # optional
fail_ci_if_error: false # optional (default = false)
verbose: false # optional (default = false)
# - uses: go-semantic-release/action@v1
# - uses: go-semantic-release/action@v2
# id: semver
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN}}
- uses: earthly/actions/setup-earthly@v1
- uses: earthly/actions/setup-earthly@v2
with:
version: v0.7.19
- name: Earthly version
Expand Down
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ protogen:
--path protos/ego

# save artifact to
SAVE ARTIFACT gen/ego/v1 AS LOCAL egopb
SAVE ARTIFACT gen/ego/v2 AS LOCAL egopb

testprotogen:
# copy the proto files to generate
Expand Down
8 changes: 4 additions & 4 deletions actor.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ import (
"github.com/tochemey/goakt/v2/actors"
"github.com/tochemey/goakt/v2/goaktpb"

"github.com/tochemey/ego/egopb"
"github.com/tochemey/ego/eventstore"
"github.com/tochemey/ego/eventstream"
"github.com/tochemey/ego/internal/telemetry"
"github.com/tochemey/ego/v2/egopb"
"github.com/tochemey/ego/v2/eventstore"
"github.com/tochemey/ego/v2/eventstream"
"github.com/tochemey/ego/v2/internal/telemetry"
)

var (
Expand Down
10 changes: 5 additions & 5 deletions actor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ import (
"github.com/tochemey/goakt/v2/log"
"github.com/tochemey/gopack/postgres"

"github.com/tochemey/ego/egopb"
"github.com/tochemey/ego/eventstore/memory"
pgeventstore "github.com/tochemey/ego/eventstore/postgres"
"github.com/tochemey/ego/eventstream"
testpb "github.com/tochemey/ego/test/data/pb/v1"
"github.com/tochemey/ego/v2/egopb"
"github.com/tochemey/ego/v2/eventstore/memory"
pgeventstore "github.com/tochemey/ego/v2/eventstore/postgres"
"github.com/tochemey/ego/v2/eventstream"
testpb "github.com/tochemey/ego/v2/test/data/pb/v1"
)

func TestActor(t *testing.T) {
Expand Down
Loading

0 comments on commit f6b9598

Please sign in to comment.