From 8fc583ce183543ff5719ea4682f751a34d716e14 Mon Sep 17 00:00:00 2001 From: Harald Nordgren Date: Wed, 24 Jul 2024 13:01:03 +0200 Subject: [PATCH 1/5] .github/test.yml: Only test for supported Go versions --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ce4dd5..c8890e9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,10 +4,10 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: - go-version: [1.13.x, 1.14.x, 1.15.x] + go-version: [1.21.x, 1.22.x, 1.23.x] steps: - name: Checkout code uses: actions/checkout@v2 From f6f475d8674d5e1373282191e18cfa333abf50b6 Mon Sep 17 00:00:00 2001 From: Harald Nordgren Date: Wed, 24 Jul 2024 13:02:45 +0200 Subject: [PATCH 2/5] Update test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c8890e9..5745dec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - go-version: [1.21.x, 1.22.x, 1.23.x] + go-version: [1.21.x, 1.22.x] steps: - name: Checkout code uses: actions/checkout@v2 From 11082a980a0e782773b22e22799839cfe89cef21 Mon Sep 17 00:00:00 2001 From: Harald Nordgren Date: Thu, 25 Jul 2024 17:41:11 +0200 Subject: [PATCH 3/5] Update test.yml --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5745dec..5dbda95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,10 +4,10 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest strategy: matrix: - go-version: [1.21.x, 1.22.x] + go-version: [oldstable, stable] steps: - name: Checkout code uses: actions/checkout@v2 From 6ec45ccbb8821dbdaa9d2e33fa8768b054402fcb Mon Sep 17 00:00:00 2001 From: Harald Nordgren Date: Thu, 25 Jul 2024 19:36:02 +0200 Subject: [PATCH 4/5] Update test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5dbda95..2fa8f26 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [oldstable, stable] + go-version: [1.21.x, 1.22.x] steps: - name: Checkout code uses: actions/checkout@v2 From fa23f0c818da461d21759877b154244a9f64b985 Mon Sep 17 00:00:00 2001 From: Harald Nordgren Date: Thu, 25 Jul 2024 19:47:54 +0200 Subject: [PATCH 5/5] Update test.yml --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2fa8f26..9a10b95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,12 +7,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.21.x, 1.22.x] + go-version: [oldstable, stable] steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: go vet