diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index a86bf9d2..e6aa67cd 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -18,6 +18,7 @@ body: description: What version of the library are you using or which versions do you see the issue in? multiple: true options: + - 0.11.1 - 0.11.0 - 0.10.2 - 0.10.1 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 66096d0c..73e3a7ca 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -16,6 +16,7 @@ jobs: go: - '1.21' - '1.22' + - '1.23' fail-fast: false steps: - name: Harden Runner diff --git a/.renovaterc b/.renovaterc index 95b2eb3c..3154c4cd 100644 --- a/.renovaterc +++ b/.renovaterc @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "constraints": { - "go": "1.22" + "go": "1.23" }, "extends": [ "config:base", diff --git a/go.mod b/go.mod index 05a3012b..96b62bf9 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/go-webauthn/webauthn -go 1.22 +go 1.23 -toolchain go1.22.6 +toolchain go1.23.0 require ( github.com/fxamacker/cbor/v2 v2.7.0