Skip to content

Commit aa879f8

Browse files
authored
Merge pull request #240 from sapcc/go-1.24.0
bump Go to 1.24.0
2 parents 6d2d9b0 + 4219a78 commit aa879f8

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/renovate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"commitMessageAction": "Renovate: Update",
1414
"constraints": {
15-
"go": "1.23"
15+
"go": "1.24"
1616
},
1717
"dependencyDashboardOSVVulnerabilitySummary": "all",
1818
"osvVulnerabilityAlerts": true,
@@ -25,7 +25,7 @@
2525
"matchPackageNames": [
2626
"golang"
2727
],
28-
"allowedVersions": "1.23.x"
28+
"allowedVersions": "1.24.x"
2929
},
3030
{
3131
"matchPackageNames": [

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/setup-go@v5
3030
with:
3131
check-latest: true
32-
go-version: 1.23.6
32+
go-version: 1.24.0
3333
- name: Run golangci-lint
3434
uses: golangci/golangci-lint-action@v6
3535
with:

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-go@v5
3333
with:
3434
check-latest: true
35-
go-version: 1.23.6
35+
go-version: 1.24.0
3636
- name: Build all binaries
3737
run: make build-all
3838
test:
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/setup-go@v5
4848
with:
4949
check-latest: true
50-
go-version: 1.23.6
50+
go-version: 1.24.0
5151
- name: Run tests and generate coverage report
5252
run: make build/cover.out
5353
- name: Upload coverage report to Coveralls

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-go@v5
3333
with:
3434
check-latest: true
35-
go-version: 1.23.6
35+
go-version: 1.24.0
3636
- name: Initialize CodeQL
3737
uses: github/codeql-action/init@v3
3838
with:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/sapcc/go-makefile-maker
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/sapcc/go-bits v0.0.0-20250213094036-fb2a5df7b9f3

internal/core/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package core
55

66
const (
77
DefaultAlpineImage = "3.21"
8-
DefaultGoVersion = "1.23.6"
8+
DefaultGoVersion = "1.24.0"
99
DefaultPostgresVersion = "17"
1010
DefaultLinkerdAwaitVersion = "0.2.7"
1111
DefaultGitHubComRunsOn = "ubuntu-latest"

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ mkShell {
99
nativeBuildInputs = [
1010
addlicense
1111
go-licence-detector
12-
go_1_23
12+
go_1_24
1313
golangci-lint
1414
gotools # goimports
1515

0 commit comments

Comments
 (0)