ci: fix go version and bump to v0.1.3

This commit is contained in:
Fabrizio Salmi
2025-12-06 22:55:55 +01:00
parent 78f0066cb8
commit 5928ff4210
4 changed files with 6 additions and 6 deletions

View File

@@ -27,10 +27,10 @@ jobs:
sudo apt update
sudo apt install -y wget git build-essential curl python3 python3-pip
- name: Install Go 1.24.2
- name: Install Go 1.23
uses: actions/setup-go@v4
with:
go-version: '1.24.2'
go-version: '1.23'
- name: Clone caddy-waf Repository
run: |

View File

@@ -26,7 +26,7 @@ jobs:
os:
- ubuntu-latest
go:
- '1.25'
- '1.23'
runs-on: ${{ matrix.os }}
permissions:

View File

@@ -50,7 +50,7 @@ var (
)
// Add or update the version constant as needed
const wafVersion = "v0.1.2" // update this value to the new release version when tagging
const wafVersion = "v0.1.3" // update this value to the new release version when tagging
// ==================== Initialization and Setup ====================

4
go.mod
View File

@@ -1,8 +1,8 @@
module github.com/fabriziosalmi/caddy-waf
go 1.25.5
go 1.23.0
toolchain go1.25.3
require (
github.com/caddyserver/caddy/v2 v2.10.2