ci: use go 1.23

This commit is contained in:
Henrique Dias
2024-08-19 19:32:46 +02:00
parent 623bbc9a70
commit 4ad26dad35
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -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 .
+2 -2
View File
@@ -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"
+1 -1
View File
@@ -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 ./...
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine3.20 AS build
FROM golang:1.23-alpine3.20 AS build
ARG VERSION="untracked"
+1 -1
View File
@@ -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