diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f3e36ff..72d2d35 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v6 - name: Download Package - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: Packages path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d1c4032..92ff43f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: - uses: actions/checkout@v6 - name: Download Package - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: Packages path: dist @@ -62,18 +62,3 @@ jobs: shell: bash run: | tox run -e py --installpkg `find dist/*.tar.gz` - - sonarcloud: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v6 - with: - # Disabling shallow clone is recommended for improving relevancy of reporting - fetch-depth: 0 - - name: SonarCloud Scan - uses: sonarsource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}