From aff6f9b8abe4dbdc7a029efc306624fd35fdc7a6 Mon Sep 17 00:00:00 2001 From: Chris Koch Date: Sat, 18 Feb 2023 15:21:23 -0800 Subject: Upgrade GH actions Signed-off-by: Chris Koch --- .github/workflows/tests.yml | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d0ffeab..deb4af0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,8 +11,8 @@ jobs: env: GO111MODULE: on steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 with: stable: false go-version: ${{ matrix.go }} @@ -28,12 +28,7 @@ jobs: fi done - name: report coverage to codecov - uses: codecov/codecov-action@v1 - with: - files: coverage.txt - flags: unittests - fail_ci_if_error: true - verbose: true + uses: codecov/codecov-action@v3 integration-tests: runs-on: ubuntu-latest strategy: @@ -42,8 +37,8 @@ jobs: env: GO111MODULE: on steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 with: stable: false go-version: ${{ matrix.go }} @@ -62,9 +57,4 @@ jobs: fi done - name: report coverage to codecov - uses: codecov/codecov-action@v1 - with: - files: coverage.txt - flags: integtests - fail_ci_if_error: true - verbose: true + uses: codecov/codecov-action@v3 -- cgit v1.2.3