Skip to content

Commit c01cc83

Browse files
authored
chore(deps): add go 1.22 support (#40)
This change add support for go 1.22. Support for Go version older than 1.20 is dropped.
1 parent 3e22d3e commit c01cc83

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
go: ['1.18', '1.19', '1.20', '1.21']
15+
go: ['1.20', '1.21', '1.22']
1616
steps:
1717
- uses: actions/checkout@v4
1818

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,10 @@ Versions that also build are marked with :warning:.
282282

283283
| Version | Supported |
284284
| ------- | ------------------ |
285-
| <1.18 | :x: |
286-
| 1.18 | :warning: |
287-
| 1.19 | :warning: |
288-
| 1.20 | :white_check_mark: |
285+
| <1.20 | :x: |
286+
| 1.20 | :warning: |
289287
| 1.21 | :white_check_mark: |
288+
| 1.22 | :white_check_mark: |
290289

291290
## License
292291

go.mod

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

3-
go 1.18
3+
go 1.20
44

55
require golang.org/x/crypto v0.24.0
66

0 commit comments

Comments
 (0)