diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 344f1af..331ea4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: - name: Upload coverage to Codecov if: matrix.python-version == '3.12' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: file: ./coverage.xml fail_ci_if_error: false diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7d07d4a..7fdd974 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -62,7 +62,7 @@ jobs: - name: Setup Pages id: pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - name: Build documentation run: | @@ -88,7 +88,7 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 # Build-only job for PRs build-pr: diff --git a/.github/workflows/monitor.yml b/.github/workflows/monitor.yml index 89aa4e3..3e2833c 100644 --- a/.github/workflows/monitor.yml +++ b/.github/workflows/monitor.yml @@ -62,7 +62,7 @@ jobs: fi - name: Upload monitoring results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: success() && hashFiles('package_stats.json') != '' with: name: package-monitoring-results @@ -253,7 +253,7 @@ jobs: uses: actions/checkout@v6 - name: Download monitoring results - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: package-monitoring-results @@ -301,7 +301,7 @@ jobs: EOF - name: Upload report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: success() && hashFiles('monitoring_report.md') != '' with: name: monitoring-report diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 78d3025..57baf46 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -55,7 +55,7 @@ jobs: - name: Upload coverage to Codecov if: matrix.python-version == '3.12' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: file: ./coverage.xml fail_ci_if_error: false @@ -89,7 +89,7 @@ jobs: python -m twine check dist/* - name: Upload build artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: dist path: dist/ @@ -108,7 +108,7 @@ jobs: steps: - name: Download build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: dist path: dist/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c13d254..9013ff7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Upload coverage to Codecov if: matrix.python-version == '3.11' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: file: ./coverage.xml fail_ci_if_error: false @@ -120,7 +120,7 @@ jobs: twine check dist/* - name: Upload build artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: dist-${{ steps.version.outputs.VERSION }} path: dist/ @@ -142,7 +142,7 @@ jobs: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT - name: Download build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: dist-${{ steps.version.outputs.VERSION }} path: dist/ @@ -209,7 +209,7 @@ jobs: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT - name: Download build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: dist-${{ steps.version.outputs.VERSION }} path: dist/ @@ -282,7 +282,7 @@ jobs: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT - name: Download build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: dist-${{ steps.version.outputs.VERSION }} path: dist/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab228c1..5def9b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,7 +74,7 @@ jobs: - name: Upload coverage to Codecov if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: file: ./coverage.xml flags: unittests