From 06b959ca83e23db3f3e620da86edb5700c615bf8 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Thu, 29 Feb 2024 15:12:37 +0100 Subject: [PATCH] Upgrade actions, go version --- .github/workflows/go-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-tests.yml b/.github/workflows/go-tests.yml index d0b86012..cd55ecfb 100644 --- a/.github/workflows/go-tests.yml +++ b/.github/workflows/go-tests.yml @@ -6,16 +6,16 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 2 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v5 with: - go-version: "1.19" + go-version: "1.22" - name: Run coverage run: go test -coverprofile=coverage.out -covermode=atomic -v ./... - name: Upload coverage to Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.out