Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-tag-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.25"

- name: Install dependencies
run: go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csm-release-driver-module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.25"
- name: Install dependencies
run: go mod tidy
- name: Build binaries
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csm-release-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.25"
- name: Install dependencies
run: go mod tidy
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.25"

# Needed for external contributors
- name: Set defaults for unit tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.25"
cache: false
- name: Checkout the code
uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-libraries-to-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.25"

- name: Clean Go module cache
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.25"

- name: Clean Go module cache
run: |
Expand Down
2 changes: 1 addition & 1 deletion go-code-formatter-vetter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24
FROM golang:1.25

LABEL "com.github.actions.name"="go-code-formatter-vetter"
LABEL "com.github.actions.description"="Checks for formatting and vetting issues"
Expand Down
2 changes: 1 addition & 1 deletion go-code-tester/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24
FROM golang:1.25

LABEL "com.github.actions.name"="go-code-tester"
LABEL "com.github.actions.description"="Runs unit tests and verifies code coverage per package"
Expand Down
2 changes: 1 addition & 1 deletion gosec-runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24
FROM golang:1.25

LABEL "com.github.actions.name"="gosec-runner"
LABEL "com.github.actions.description"="Runs gosec"
Expand Down
2 changes: 1 addition & 1 deletion license-checker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# limitations under the License.
#

FROM golang:1.24
FROM golang:1.25

LABEL "com.github.actions.name"="license-checker"
LABEL "com.github.actions.description"="Checks for license header"
Expand Down
2 changes: 1 addition & 1 deletion license-checker/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/dell/license-checker

go 1.24
go 1.25

require github.com/sethvargo/go-githubactions v1.3.1