From 36bf6af9277c0d5a129eb780aac80d5e0475de0d Mon Sep 17 00:00:00 2001 From: Grzegorz Rozdzialik Date: Mon, 10 Jun 2024 09:46:56 +0200 Subject: [PATCH] ci: include go 1.22 in CI workflow Make sure the tool also works using go 1.22. --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dea161b..42f6e68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: build-and-test: strategy: matrix: - go-version: ["1.18", "1.19", "1.20", "1.21", "stable"] + go-version: ["1.18", "1.19", "1.20", "1.21", "1.22", "stable"] os: [ubuntu-latest, macos-latest, windows-latest] # Continue other jobs if one matrix job fails fail-fast: false diff --git a/CHANGELOG.md b/CHANGELOG.md index d7ec4aa..5429b4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ Thanks to [@thejan2009](https://github.com/thejan2009) for suggesting this feature. +### Internal + +- Include go 1.22 in CI . + ## v0.2.3 (2023-09-19) ### Improvements