Update CI workflow to use latest actions and Go version
Some checks failed
CI / build-test (push) Failing after 5m59s

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
This commit is contained in:
2026-02-23 17:47:36 +01:00
parent 2da6cf8023
commit a9e468e2bb

View File

@@ -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 ./...