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..9a5f435 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: | @@ -73,7 +73,7 @@ jobs: cp docs/CNAME site/CNAME - name: Upload artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: ./site @@ -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: @@ -128,7 +128,7 @@ jobs: - name: Comment PR with build status if: github.event_name == 'pull_request' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | github.rest.issues.createComment({ diff --git a/.github/workflows/monitor.yml b/.github/workflows/monitor.yml index 89aa4e3..88a5b28 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 @@ -107,7 +107,7 @@ jobs: - name: Create issue for health problems if: steps.health_check.outputs.alert_needed == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const title = `📦 Package Health Alert: ${{ steps.monitor.outputs.health }}`; @@ -170,7 +170,7 @@ jobs: - name: Close resolved health issues if: steps.health_check.outputs.alert_needed == 'false' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | // Find open health alert issues @@ -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..d11c1ca 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/ @@ -173,7 +173,7 @@ jobs: " > release_notes.txt - name: Create GitHub Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ steps.version.outputs.TAG }} name: Release ${{ steps.version.outputs.VERSION }} @@ -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