Skip to content

Commit 3c6f08a

Browse files
authored
chore: Bump go to 1.24 (#105)
1 parent 29ac316 commit 3c6f08a

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
fail-fast: true
3434
matrix:
3535
language: [ 'go' ]
36-
os: [ 'ubuntu-22.04' ]
37-
go-version: [1.23.x]
36+
os: [ 'ubuntu-24.04' ]
37+
go-version: [1.24.x]
3838
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
3939
# Learn more about CodeQL language support at https://git.io/codeql-language-support
4040

.github/workflows/dockerfiles.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
[
2525
"./build/docker/go-tools/Dockerfile",
2626
]
27-
runs-on: "ubuntu-22.04"
27+
runs-on: "ubuntu-24.04"
2828
name: Lint ${{ matrix.dockerfile }}
2929
steps:
3030
- name: Checkout

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
fail-fast: false
4242
max-parallel: 3
4343
matrix:
44-
os: [ 'ubuntu-22.04' ]
45-
go-version: [1.23.x]
44+
os: [ 'ubuntu-24.04' ]
45+
go-version: [1.24.x]
4646
runs-on: ${{ matrix.os }}
4747
name: Build
4848
steps:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COMPOSE_TOOLS_CMD_BASE=docker compose -f $(COMPOSE_TOOLS_FILE)
1313
COMPOSE_TOOLS_CMD_UP=$(COMPOSE_TOOLS_CMD_BASE) up --exit-code-from
1414
COMPOSE_TOOLS_CMD_PULL=$(COMPOSE_TOOLS_CMD_BASE) build
1515

16-
GOVERSION:=1.23
16+
GOVERSION:=1.24
1717

1818
TARGET_MAX_CHAR_NUM=20
1919

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/obalunenko/strava-api
22

3-
go 1.23
3+
go 1.24
4+
5+
toolchain go1.24.0
46

57
require (
68
github.com/go-openapi/errors v0.22.0

0 commit comments

Comments
 (0)