Skip to content

Commit

Permalink
chore: Bump go to 1.24 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
obalunenko authored Feb 18, 2025
1 parent 29ac316 commit 3c6f08a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
fail-fast: true
matrix:
language: [ 'go' ]
os: [ 'ubuntu-22.04' ]
go-version: [1.23.x]
os: [ 'ubuntu-24.04' ]
go-version: [1.24.x]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
[
"./build/docker/go-tools/Dockerfile",
]
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
name: Lint ${{ matrix.dockerfile }}
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
os: [ 'ubuntu-22.04' ]
go-version: [1.23.x]
os: [ 'ubuntu-24.04' ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Build
steps:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COMPOSE_TOOLS_CMD_BASE=docker compose -f $(COMPOSE_TOOLS_FILE)
COMPOSE_TOOLS_CMD_UP=$(COMPOSE_TOOLS_CMD_BASE) up --exit-code-from
COMPOSE_TOOLS_CMD_PULL=$(COMPOSE_TOOLS_CMD_BASE) build

GOVERSION:=1.23
GOVERSION:=1.24

TARGET_MAX_CHAR_NUM=20

Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/obalunenko/strava-api

go 1.23
go 1.24

toolchain go1.24.0

require (
github.com/go-openapi/errors v0.22.0
Expand Down

0 comments on commit 3c6f08a

Please sign in to comment.