Skip to content

Commit fdcd4ea

Browse files
committed
all: Update Go to 1.21
Will make use of generics and other new features in separate commits.
1 parent 33b11ad commit fdcd4ea

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: ["windows-latest", "ubuntu-latest", "macOS-latest"]
15-
go: ["1.19.x"]
15+
go: ["1.21.x"]
1616
fail-fast: false
1717

1818
steps:
@@ -52,4 +52,4 @@ jobs:
5252
run: go vet ./...
5353

5454
- name: Go staticcheck
55-
run: go run honnef.co/go/tools/cmd/staticcheck@2022.1.3 ./...
55+
run: go run honnef.co/go/tools/cmd/staticcheck@2023.1.6 ./...

docs/PRODUCTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This document describes the recommended setup for an non-containerized Atlas ser
66

77
| Dependency | Version | Notes |
88
| --- | --- | --- |
9-
| go | 1.19+ | |
9+
| go | 1.21.0+ | |
1010
| git | | for downloading code |
1111
| gcc | | other C compilers will work fine |
1212
| systemd | 250+ | 250 is needed for credentials to work <br/> 240 is needed for data directory stuff |

go.mod

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

3-
go 1.19
3+
go 1.21.0
44

55
require (
66
github.com/VictoriaMetrics/metrics v1.23.1

0 commit comments

Comments
 (0)