diff --git a/.github/workflows/csm-release-driver-module.yaml b/.github/workflows/csm-release-driver-module.yaml index 27d0440c..76c02e31 100644 --- a/.github/workflows/csm-release-driver-module.yaml +++ b/.github/workflows/csm-release-driver-module.yaml @@ -33,7 +33,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.24" - name: Install dependencies run: go mod tidy - name: Build binaries diff --git a/.github/workflows/csm-release-libs.yaml b/.github/workflows/csm-release-libs.yaml index b986ac5f..1117c7d2 100644 --- a/.github/workflows/csm-release-libs.yaml +++ b/.github/workflows/csm-release-libs.yaml @@ -29,7 +29,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.24" - name: Install dependencies run: go mod tidy - name: Build diff --git a/.github/workflows/go-static-analysis.yaml b/.github/workflows/go-static-analysis.yaml index ef5bd066..45f116f4 100644 --- a/.github/workflows/go-static-analysis.yaml +++ b/.github/workflows/go-static-analysis.yaml @@ -36,7 +36,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.24" cache: false - name: Checkout the code uses: actions/checkout@v4 diff --git a/.github/workflows/update-libraries-to-commits.yml b/.github/workflows/update-libraries-to-commits.yml index 60f6226c..2db24b46 100644 --- a/.github/workflows/update-libraries-to-commits.yml +++ b/.github/workflows/update-libraries-to-commits.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.24" - name: Clean Go module cache run: | diff --git a/.github/workflows/update-libraries.yml b/.github/workflows/update-libraries.yml index b92f268f..6c733c7f 100644 --- a/.github/workflows/update-libraries.yml +++ b/.github/workflows/update-libraries.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.24" - name: Clean Go module cache run: | diff --git a/go-code-formatter-vetter/Dockerfile b/go-code-formatter-vetter/Dockerfile index b75510e3..54165828 100644 --- a/go-code-formatter-vetter/Dockerfile +++ b/go-code-formatter-vetter/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23 +FROM golang:1.24 LABEL "com.github.actions.name"="go-code-formatter-vetter" LABEL "com.github.actions.description"="Checks for formatting and vetting issues" diff --git a/go-code-tester/Dockerfile b/go-code-tester/Dockerfile index 47df33a6..2a62f563 100644 --- a/go-code-tester/Dockerfile +++ b/go-code-tester/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23 +FROM golang:1.24 LABEL "com.github.actions.name"="go-code-tester" LABEL "com.github.actions.description"="Runs unit tests and verifies code coverage per package" diff --git a/gosec-runner/Dockerfile b/gosec-runner/Dockerfile index cddbe012..9ddb312f 100644 --- a/gosec-runner/Dockerfile +++ b/gosec-runner/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23 +FROM golang:1.24 LABEL "com.github.actions.name"="gosec-runner" LABEL "com.github.actions.description"="Runs gosec"