From a2ec425daf4eaec05bfe07b187e6d027fa94758b Mon Sep 17 00:00:00 2001 From: Andrey Butusov Date: Thu, 27 Feb 2025 16:12:23 +0300 Subject: [PATCH] workflows: use Go 1.23/1.24 for tests Nothing to change here code-wise, so go.mod is left as is. Closes #39. Signed-off-by: Andrey Butusov --- .github/workflows/run_tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 18ea5c8..b426f99 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -26,7 +26,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' cache: true - name: Write coverage profile @@ -47,14 +47,14 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-2022, macos-14 ] - go_versions: [ '1.22', '1.23' ] + go_versions: [ '1.23', '1.24' ] exclude: - os: macos-14 - go_versions: '1.22' + go_versions: '1.23' - os: windows-2022 - go_versions: '1.22' - - os: ubuntu-latest go_versions: '1.23' + - os: ubuntu-latest + go_versions: '1.24' fail-fast: false steps: - uses: actions/checkout@v4