From c01cc830613c5c3ad2238181a13d2773678434a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20M=C3=B6hlmann?= Date: Fri, 21 Jun 2024 14:45:42 +0300 Subject: [PATCH] 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. --- .github/workflows/go.yml | 2 +- README.md | 7 +++---- go.mod | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 65f0621..5b3c153 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.18', '1.19', '1.20', '1.21'] + go: ['1.20', '1.21', '1.22'] steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index fe312aa..0c5b132 100644 --- a/README.md +++ b/README.md @@ -282,11 +282,10 @@ Versions that also build are marked with :warning:. | Version | Supported | | ------- | ------------------ | -| <1.18 | :x: | -| 1.18 | :warning: | -| 1.19 | :warning: | -| 1.20 | :white_check_mark: | +| <1.20 | :x: | +| 1.20 | :warning: | | 1.21 | :white_check_mark: | +| 1.22 | :white_check_mark: | ## License diff --git a/go.mod b/go.mod index 64d6838..e45c0a3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/zitadel/passwap -go 1.18 +go 1.20 require golang.org/x/crypto v0.24.0