From 5a910d9f59a2df92e1f9eca3cbdc5459a86039b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 06:24:59 +0000 Subject: [PATCH 1/2] Bump codecov/codecov-action from 3.1.3 to 4.5.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.3 to 4.5.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3.1.3...v4.5.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1bbdb566..0df90852 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -73,7 +73,7 @@ jobs: pixi run -e ${{ matrix.env }} postinstall pixi run -e ${{ matrix.env }} coverage --color=yes - name: Generate code coverage report - uses: codecov/codecov-action@v3.1.3 + uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml @@ -119,7 +119,7 @@ jobs: pixi run -e ${{ matrix.env }} postinstall pixi run -e ${{ matrix.env }} coverage --color=yes - name: Generate code coverage report - uses: codecov/codecov-action@v3.1.3 + uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml @@ -161,7 +161,7 @@ jobs: pixi run -e ${{ matrix.env }} postinstall pixi run -e ${{ matrix.env }} coverage --color=yes - name: Generate code coverage report - uses: codecov/codecov-action@v3.1.3 + uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml @@ -205,7 +205,7 @@ jobs: pixi run -e ${{ matrix.env }} postinstall pixi run -e ${{ matrix.env }} coverage --color=yes - name: Generate code coverage report - uses: codecov/codecov-action@v3.1.3 + uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml @@ -234,7 +234,7 @@ jobs: pixi run -e ${{ matrix.env }} postinstall pixi run -e ${{ matrix.env }} coverage --color=yes - name: Generate code coverage report - uses: codecov/codecov-action@v3.1.3 + uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml @@ -266,7 +266,7 @@ jobs: # pixi run -e ${{ matrix.env }} postinstall # pixi run -e ${{ matrix.env }} coverage # - name: Generate code coverage report - # uses: codecov/codecov-action@v3.1.3 + # uses: codecov/codecov-action@v4.5.0 # with: # file: ./coverage.xml @@ -293,6 +293,6 @@ jobs: pixi run -e ${{ matrix.env }} postinstall pixi run -e ${{ matrix.env }} coverage - name: Generate code coverage report - uses: codecov/codecov-action@v3.1.3 + uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml From a274e857523817377154592e98ed4c698bd8206f Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Wed, 3 Jul 2024 14:29:23 +0200 Subject: [PATCH 2/2] Add token --- .github/workflows/ci.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0df90852..77538d9d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -76,6 +76,7 @@ jobs: uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml + token: ${{ secrets.CODECOV_TOKEN }} mssql: if: ${{ contains(github.event.pull_request.labels.*.name, 'sqlserver') || contains(github.event.pull_request.labels.*.name, 'ready') || github.ref == 'refs/heads/main' }} @@ -122,6 +123,7 @@ jobs: uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml + token: ${{ secrets.CODECOV_TOKEN }} postgres: if: ${{ contains(github.event.pull_request.labels.*.name, 'postgres') || contains(github.event.pull_request.labels.*.name, 'ready') || github.ref == 'refs/heads/main' }} @@ -164,6 +166,7 @@ jobs: uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml + token: ${{ secrets.CODECOV_TOKEN }} db2: @@ -208,6 +211,7 @@ jobs: uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml + token: ${{ secrets.CODECOV_TOKEN }} snowflake: if: ${{ contains(github.event.pull_request.labels.*.name, 'snowflake') || contains(github.event.pull_request.labels.*.name, 'ready') || github.ref == 'refs/heads/main' }} @@ -237,6 +241,7 @@ jobs: uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml + token: ${{ secrets.CODECOV_TOKEN }} # The authentication of these tests is currently failing. # These tests should be reenabled asap. @@ -269,6 +274,7 @@ jobs: # uses: codecov/codecov-action@v4.5.0 # with: # file: ./coverage.xml + # token: ${{ secrets.CODECOV_TOKEN }} impala: if: ${{ contains(github.event.pull_request.labels.*.name, 'impala') || contains(github.event.pull_request.labels.*.name, 'ready') || github.ref == 'refs/heads/main' }} @@ -296,3 +302,4 @@ jobs: uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml + token: ${{ secrets.CODECOV_TOKEN }}