From d40e1ef136b0c1f805b7158e2675c5a38273608a Mon Sep 17 00:00:00 2001 From: Boris Staletic Date: Wed, 13 Sep 2023 21:37:30 +0200 Subject: [PATCH] Update setup-java action --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef51a3e297..5fab854c26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,7 @@ jobs: uses: codecov/codecov-action@v3 with: name: "${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.python-arch }}" + token: ${{ secrets.CODECOV_TOKEN }} vim-tests: strategy: @@ -71,7 +72,7 @@ jobs: - name: Install dependencies run: sudo -H pip3 install -r python/test_requirements.txt - name: Install Java - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: java-version: 17 distribution: 'temurin' @@ -90,3 +91,4 @@ jobs: uses: codecov/codecov-action@v3 with: name: "vim-tests-${{ matrix.vim }}" + token: ${{ secrets.CODECOV_TOKEN }}