diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9aea77..e4a5f1f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5.3.0 with: - go-version: 1.24.13 + go-version: 1.25.9 - name: Checkout code uses: actions/checkout@v4.2.2 - name: Run unit tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 25b44e2..059c835 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v1 with: - go-version: 1.24.13 + go-version: 1.25.9 - name: Checkout code uses: actions/checkout@v2 - name: Run unit tests diff --git a/Dockerfile b/Dockerfile index c2b4faf..c2e3874 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.13 AS builder +FROM golang:1.25.9 AS builder ENV OUTPUT_DIR=/out diff --git a/Dockerfile_linux_arm64 b/Dockerfile_linux_arm64 index f1c94d6..8ed26fc 100644 --- a/Dockerfile_linux_arm64 +++ b/Dockerfile_linux_arm64 @@ -1,4 +1,4 @@ -FROM golang:1.24.13 AS builder +FROM golang:1.25.9 AS builder ENV OUTPUT_DIR=/out diff --git a/Dockerfile_linux_s390x b/Dockerfile_linux_s390x index 16fccc0..f05cc3d 100644 --- a/Dockerfile_linux_s390x +++ b/Dockerfile_linux_s390x @@ -1,4 +1,4 @@ -FROM golang:1.24.13 AS builder +FROM golang:1.25.9 AS builder ENV OUTPUT_DIR=/out diff --git a/go.mod b/go.mod index fc63b9a..627b96d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/aquasecurity/linux-bench -go 1.24.8 +go 1.25.9 require ( github.com/aquasecurity/bench-common v0.4.8