From e9734312380af1560c1d9bb32744ce7e11d1e511 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 28 Jun 2024 21:38:30 +0200 Subject: [PATCH 1/3] gha: update to actions/checkout@v4 Signed-off-by: Sebastiaan van Stijn --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d179fb8..b132041 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,7 +22,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Validate headers if: startsWith(matrix.go-version, '1.13') == false run: | From fe02cdde8a2ffbdaccc4fc935d1a4fe8672f55dd Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 28 Jun 2024 21:39:28 +0200 Subject: [PATCH 2/3] gha: update to actions/setup-go@v5 Signed-off-by: Sebastiaan van Stijn --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b132041..4bafdca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,7 +18,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code From 0aeabbd34ed1788f4a9f87d94d8498d332e6918a Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 28 Jun 2024 21:40:04 +0200 Subject: [PATCH 3/3] gha: test against go1.13 (oldest), go1.21 and go1.22 Keeping the oldest version in the matrix, as that's defined as minimum in go.mod, but testing against latest and previous. Signed-off-by: Sebastiaan van Stijn --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4bafdca..18926a0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 10 strategy: matrix: - go-version: [1.13.x, 1.18.x, 1.19.x] + go-version: [1.13.x, 1.21.x, 1.22.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: