From 2378bc37c6a99bb45cc4db98c9d78bb2c1a64b30 Mon Sep 17 00:00:00 2001 From: Alec M <alecmattu@gmail.com> Date: Sat, 28 Sep 2024 10:27:39 -0400 Subject: [PATCH 1/2] Bump minimum version to 1.19 --- .github/workflows/go-tests.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-tests.yml b/.github/workflows/go-tests.yml index 2fcb012..934974f 100644 --- a/.github/workflows/go-tests.yml +++ b/.github/workflows/go-tests.yml @@ -17,7 +17,7 @@ jobs: if: ${{ github.repository_owner == 'placeholder-app' }} strategy: matrix: - go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x] + go-version: [1.19.x, 1.20.x, 1.21.x, 1.22.x, 1.23.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/README.md b/README.md index aab7ed1..d5777b4 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ You can simulate requests to the API, or run HTTP-based testing. # Requirements & Dependencies -- Go 1.19 +- Go 1.19 (Minimum) - [gin-gonic/gin](github.com/gin-gonic/gin) - openapi-generator-cli (For documentation only) From 491fe97203b7ba3b1c8db940bbb7c180c8caf782 Mon Sep 17 00:00:00 2001 From: Alec M <alecmattu@gmail.com> Date: Sat, 28 Sep 2024 10:28:35 -0400 Subject: [PATCH 2/2] Drop MacOS runner --- .github/workflows/go-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go-tests.yml b/.github/workflows/go-tests.yml index 934974f..0c66315 100644 --- a/.github/workflows/go-tests.yml +++ b/.github/workflows/go-tests.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: go-version: [1.19.x, 1.20.x, 1.21.x, 1.22.x, 1.23.x] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: # Clone repository