From 5794c7cd9f73c56b2695e46dcff80f13fac97624 Mon Sep 17 00:00:00 2001 From: Christoph Polcin Date: Tue, 23 Jul 2024 13:29:14 +0200 Subject: [PATCH] test with go 1.22 / 1.21 / 1.20 --- .github/workflows/artifacts.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 2b216093..d5711e6f 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: "^1.17" + go-version: "^1.22" - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Get dependencies @@ -43,4 +43,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: ${{ matrix.goos }}-${{ matrix.goarch }} - path: ./bin/ \ No newline at end of file + path: ./bin/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a7d41fc1..0eb805f6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,9 +15,9 @@ jobs: strategy: matrix: goversion: + - "1.22" + - "1.21" - "1.20" - - "1.19" - - "1.18" steps: - name: Set up Go uses: actions/setup-go@v1