Skip to content

Commit

Permalink
bump go version
Browse files Browse the repository at this point in the history
  • Loading branch information
notandy committed Aug 15, 2023
1 parent 7578060 commit 6f4a5de
Show file tree
Hide file tree
Showing 11 changed files with 1,721 additions and 64 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version-file: ./go.mod

- name: Build
run: go build -v ./...
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version-file: ./go.mod

- if: ${{ matrix.database == 'mariadb' }}
name: Run MariaDB
Expand Down
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
module github.com/sapcc/andromeda

go 1.19
go 1.21

require (
github.com/Boostport/migration v1.1.2
github.com/Boostport/migration/driver/mysql v1.1.2
github.com/Boostport/migration/driver/postgres v1.1.3
github.com/Masterminds/squirrel v1.5.4
github.com/akamai/AkamaiOPEN-edgegrid-golang/v5 v5.0.0
github.com/akamai/AkamaiOPEN-edgegrid-golang/v7 v7.1.0
github.com/cockroachdb/cockroach-go/v2 v2.3.5
github.com/didip/tollbooth v4.0.2+incompatible
Expand Down
63 changes: 13 additions & 50 deletions go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions internal/driver/akamai/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"context"
"time"

"github.com/akamai/AkamaiOPEN-edgegrid-golang/v5/pkg/gtm"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v5/pkg/session"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v7/pkg/gtm"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v7/pkg/session"
"github.com/go-micro/plugins/v4/sync/memory"
lru "github.com/hashicorp/golang-lru/v2"
"go-micro.dev/v4"
Expand Down
4 changes: 2 additions & 2 deletions internal/driver/akamai/akamai.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"net/http"
"os"

"github.com/akamai/AkamaiOPEN-edgegrid-golang/v5/pkg/edgegrid"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v5/pkg/session"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v7/pkg/edgegrid"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v7/pkg/session"
"go-micro.dev/v4/logger"

"github.com/sapcc/andromeda/internal/config"
Expand Down
2 changes: 1 addition & 1 deletion internal/driver/akamai/datacenter.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"context"
"time"

"github.com/akamai/AkamaiOPEN-edgegrid-golang/v5/pkg/gtm"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v7/pkg/gtm"
"go-micro.dev/v4/logger"

"github.com/sapcc/andromeda/internal/config"
Expand Down
4 changes: 2 additions & 2 deletions internal/driver/akamai/domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ package akamai

import (
"context"
"github.com/sapcc/andromeda/internal/driver"
"github.com/sapcc/andromeda/internal/rpc/server"
"time"

"go-micro.dev/v4/logger"

"github.com/sapcc/andromeda/internal/config"
"github.com/sapcc/andromeda/internal/driver"
"github.com/sapcc/andromeda/internal/rpc/server"
"github.com/sapcc/andromeda/internal/rpcmodels"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/driver/akamai/geomap.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"
"time"

"github.com/akamai/AkamaiOPEN-edgegrid-golang/v5/pkg/gtm"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v7/pkg/gtm"
"go-micro.dev/v4/logger"

"github.com/sapcc/andromeda/internal/config"
Expand Down
5 changes: 3 additions & 2 deletions internal/driver/akamai/property.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ package akamai
import (
"context"
"fmt"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v5/pkg/gtm"
"github.com/sapcc/andromeda/internal/driver"

"github.com/akamai/AkamaiOPEN-edgegrid-golang/v7/pkg/gtm"
"go-micro.dev/v4/logger"

"github.com/sapcc/andromeda/internal/config"
"github.com/sapcc/andromeda/internal/driver"
"github.com/sapcc/andromeda/internal/rpcmodels"
"github.com/sapcc/andromeda/internal/utils"
)
Expand Down
Loading

0 comments on commit 6f4a5de

Please sign in to comment.