From c9c5ad3292798abb85552e40d9ff5cee2e499f93 Mon Sep 17 00:00:00 2001 From: Paul Thornthwaite Date: Wed, 26 Aug 2026 16:40:07 +0000 Subject: [PATCH 1/2] ci: Bump actions to latest versions This is to avoid the node deprecation warnings. --- .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 a0b8bab..bca00f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,8 +9,8 @@ jobs: name: go test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - uses: actions/checkout@v5 + - uses: actions/setup-go@v6 with: go-version-file: go.mod - run: go vet ./... From fdd571c4850b6cd8fb5b57604a3f3347d40bb587 Mon Sep 17 00:00:00 2001 From: Paul Thornthwaite Date: Wed, 26 Aug 2026 16:43:17 +0000 Subject: [PATCH 2/2] ci: Rename "tests" to "CI" This covers a bit more than just tests so the name is generalised and capitalised so it looks better in the UI. --- .github/workflows/test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bca00f5..a8e317a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: test +name: CI on: push: branches: @@ -13,5 +13,7 @@ jobs: - uses: actions/setup-go@v6 with: go-version-file: go.mod - - run: go vet ./... - - run: go test ./... + - name: Run go vet + run: go vet ./... + - name: Run go test + run: go test ./...