From a1c4cb8c07a137d0723e977dfa37935f0ecfef92 Mon Sep 17 00:00:00 2001 From: reugn Date: Sun, 25 Aug 2024 14:36:21 +0300 Subject: [PATCH] ci: update versions in the build workflow --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a057fef..dcbf017 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.20.x, 1.22.x] + go-version: [1.20.x, 1.23.x] steps: - name: Setup Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} @@ -28,4 +28,6 @@ jobs: - name: Upload coverage to Codecov if: ${{ matrix.go-version == '1.20.x' }} - run: bash <(curl -s https://codecov.io/bash) \ No newline at end of file + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file