Skip to content

Commit c8c0694

Browse files
authored
feat: Upgrade go to 1.25 (#180)
1 parent 281ab7b commit c8c0694

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# Learn more about CodeQL language support at https://git.io/codeql-language-support
3636
language: [ 'go' ]
3737
os: [ 'ubuntu-24.04' ]
38-
go-version: [1.24.x]
38+
go-version: [1.25.x]
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@v5

.github/workflows/go.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
max-parallel: 3
4444
matrix:
4545
os: [ 'ubuntu-24.04' ]
46-
go-version: [1.24.x]
46+
go-version: [1.25.x]
4747
runs-on: ${{ matrix.os }}
4848
name: Build
4949
steps:
@@ -90,7 +90,7 @@ jobs:
9090
max-parallel: 2
9191
matrix:
9292
os: [ 'ubuntu-24.04' ]
93-
go-version: [1.24.x]
93+
go-version: [1.25.x]
9494
runs-on: ${{ matrix.os }}
9595
name: Run Tests
9696
steps:
@@ -137,7 +137,7 @@ jobs:
137137
max-parallel: 2
138138
matrix:
139139
os: [ 'ubuntu-24.04' ]
140-
go-version: [1.24.x]
140+
go-version: [1.25.x]
141141
runs-on: ${{ matrix.os }}
142142
name: Run linters
143143
steps:
@@ -189,7 +189,7 @@ jobs:
189189
max-parallel: 1
190190
matrix:
191191
os: [ 'ubuntu-24.04' ]
192-
go-version: [1.24.x]
192+
go-version: [1.25.x]
193193
runs-on: ${{ matrix.os }}
194194
name: Quality reports
195195
steps:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
max-parallel: 2
1515
matrix:
1616
os: [ 'ubuntu-24.04' ]
17-
go-version: [1.24.x]
17+
go-version: [1.25.x]
1818
runs-on: ${{ matrix.os }}
1919
name: Build
2020
steps:
@@ -60,7 +60,7 @@ jobs:
6060
max-parallel: 2
6161
matrix:
6262
os: [ 'ubuntu-24.04' ]
63-
go-version: [1.24.x]
63+
go-version: [1.25.x]
6464
runs-on: ${{ matrix.os }}
6565
name: Regression tests
6666
steps:
@@ -109,7 +109,7 @@ jobs:
109109
max-parallel: 1
110110
matrix:
111111
os: [ 'ubuntu-24.04' ]
112-
go-version: [1.24.x]
112+
go-version: [1.25.x]
113113
runs-on: ${{ matrix.os }}
114114
name: Lint
115115
steps:
@@ -162,7 +162,7 @@ jobs:
162162
max-parallel: 1
163163
matrix:
164164
os: [ 'ubuntu-24.04' ]
165-
go-version: [1.24.x]
165+
go-version: [1.25.x]
166166
runs-on: ${{ matrix.os }}
167167
name: Release
168168
steps:

Makefile

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

17-
GOVERSION:=1.23
17+
GOVERSION:=1.25
1818

1919
TARGET_MAX_CHAR_NUM=20
2020

build/docker/go-tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM ghcr.io/obalunenko/go-tools:v1.7.11 AS builder
1+
FROM ghcr.io/obalunenko/go-tools:v1.8.0 AS builder
22

33
CMD ["/bin/sh", "-c", ""]

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/obalunenko/georgia-tax-calculator
22

3-
go 1.24
3+
go 1.25.0
44

55
require (
66
github.com/AlecAivazis/survey/v2 v2.3.7

0 commit comments

Comments
 (0)