From a9e468e2bbed7cc9e59595e2fe72aed4b67adc56 Mon Sep 17 00:00:00 2001 From: Jean-Luc Makiola Date: Mon, 23 Feb 2026 17:47:36 +0100 Subject: [PATCH] Update CI workflow to use latest actions and Go version Updated `actions/checkout` to v6 and `actions/setup-go` to v6 with Go version set to 1.26 for improved compatibility and functionality. Changelog: other --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b670ea7..31a63a7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,11 +9,11 @@ jobs: runs-on: docker steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: - go-version: '1.21' + go-version: '1.26' - name: Run tests with coverage run: | go test -v -coverprofile=coverage.out ./...