Skip to content

Commit

Permalink
go.mod, workflows: update to Go 1.23 min
Browse files Browse the repository at this point in the history
Drop 1.22 and use 1.24 for test.

Closes #39.

Signed-off-by: Andrey Butusov <andrey@nspcc.io>
  • Loading branch information
End-rey committed Feb 27, 2025
1 parent 3ce696b commit 253a13e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
cache: true

- name: Write coverage profile
Expand All @@ -47,14 +47,14 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-2022, macos-14 ]
go_versions: [ '1.22', '1.23' ]
go_versions: [ '1.23', '1.24' ]
exclude:
- os: macos-14
go_versions: '1.22'
go_versions: '1.23'
- os: windows-2022
go_versions: '1.22'
- os: ubuntu-latest
go_versions: '1.23'
- os: ubuntu-latest
go_versions: '1.24'
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/nspcc-dev/locode-db

go 1.22
go 1.23

require (
github.com/paulmach/orb v0.11.1
Expand Down

0 comments on commit 253a13e

Please sign in to comment.