diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index 4ff734a..0f9726d 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -10,6 +10,7 @@ on: env: ENV: testing + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} jobs: test: @@ -22,7 +23,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: "3.12" + python-version: "3.x" - name: Install Dependencies run: | @@ -36,7 +37,9 @@ jobs: pipenv run coverage xml - name: Codecov - uses: codecov/codecov-action@v3.1.0 + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} analyze: runs-on: ubuntu-latest @@ -51,7 +54,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v4