diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9941e96..4232575 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,5 +15,5 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.22.x" + go-version: "1.23.x" - run: go build . diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7c51cf8..f45cb3f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.22.x" + go-version: "1.23.x" - uses: golangci/golangci-lint-action@v6 with: - version: "v1.59" + version: "v1.60" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8760b4a..e8881fa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,6 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.22.x" + go-version: "1.23.x" - name: Run test with coverage run: go test -race -coverprofile=coverage.txt -covermode=atomic ./... diff --git a/Dockerfile b/Dockerfile index 702f118..368ac85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-alpine3.20 AS build +FROM golang:1.23-alpine3.20 AS build ARG VERSION="untracked" diff --git a/go.mod b/go.mod index 915f18b..a399f65 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hacdias/webdav/v5 -go 1.22 +go 1.23 require ( github.com/go-viper/mapstructure/v2 v2.1.0