Skip to content

Commit

Permalink
Merge commit '821728e3b6b20f9cf341f63949f901de9d3f6f2a'
Browse files Browse the repository at this point in the history
  • Loading branch information
117503445 committed Sep 20, 2024
2 parents 112b1d4 + 821728e commit 5d15ad7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# https://github.com/actions/setup-go
- uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.23"

- run: go test ./...

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22 as build
FROM golang:1.23 as build
WORKDIR /workspace
COPY go.mod go.sum ./
RUN go mod download
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strconv"
"strings"

_ "GoWebDAV/internal/common"
"GoWebDAV/internal/server"
_ "github.com/117503445/GoWebDAV/internal/common"
"github.com/117503445/GoWebDAV/internal/server"

"github.com/117503445/goutils"
"github.com/knadh/koanf/v2"
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module GoWebDAV
module github.com/117503445/GoWebDAV

go 1.22.5
go 1.23.1

require (
github.com/117503445/goutils v0.0.0-20240817175023-c208c6d669ae
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"GoWebDAV/cmd"
"github.com/117503445/GoWebDAV/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion tests/dav_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"GoWebDAV/internal/server"
"github.com/117503445/GoWebDAV/internal/server"

"github.com/stretchr/testify/assert"
"github.com/studio-b12/gowebdav"
Expand Down

0 comments on commit 5d15ad7

Please sign in to comment.