From 65bd31dbdb1eacb302e396f63cec38fc1fef7aa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Li=C3=A9bert?= Date: Fri, 4 Oct 2024 14:24:59 +0200 Subject: [PATCH] Update to go 1.23 --- .github/workflows/go-cross.yml | 2 +- .github/workflows/main.yml | 4 ++-- Makefile | 2 +- go.mod | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go-cross.yml b/.github/workflows/go-cross.yml index 61cef3d..bd6924a 100644 --- a/.github/workflows/go-cross.yml +++ b/.github/workflows/go-cross.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - go-version: [ 1.18, 1.x ] + go-version: [ 1.23, 1.x ] os: [ubuntu-latest, macos-latest, windows-latest] steps: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 520c1c0..0db0dcc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,9 +14,9 @@ jobs: name: Main Process runs-on: ubuntu-latest env: - GO_VERSION: 1.18 + GO_VERSION: 1.23 GOLANGCI_LINT_VERSION: v1.33.0 - YAEGI_VERSION: v0.9.8 + YAEGI_VERSION: v0.16.1 CGO_ENABLED: 0 defaults: run: diff --git a/Makefile b/Makefile index 6052630..1b0dc56 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: lint test vendor clean -export GO118MODULE=on +export GO123MODULE=on default: lint test diff --git a/go.mod b/go.mod index 6fc3100..d5e089a 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/agence-gaya/traefik-plugin-blockuseragent -go 1.18 +go 1.23