diff --git a/.github/workflows/01.1.agentic_cron.yml b/.github/workflows/01.1.agentic_cron.yml index a13eb209..2cdbf121 100644 --- a/.github/workflows/01.1.agentic_cron.yml +++ b/.github/workflows/01.1.agentic_cron.yml @@ -101,7 +101,7 @@ jobs: pip install --no-cache-dir pydantic PyGithub aiohttp beautifulsoup4 httpx fake-useragent pytz python-dotenv twikit>=2.1.2 playwright playwright-stealth pyyaml tenacity - name: Cache Playwright Binaries - uses: actions/cache@v5 + uses: actions/cache@v4 id: playwright-cache with: path: ~/.cache/ms-playwright @@ -170,7 +170,7 @@ jobs: - name: Upload Visual Dashboard Artifact if: always() - uses: actions/upload-artifact@v7 + uses: actions/upload-artifact@v4 with: name: curation-visual-report path: report.html diff --git a/.github/workflows/02.1.intelligent_link_cleaner.yml b/.github/workflows/02.1.intelligent_link_cleaner.yml index 3cb6a511..f832af36 100644 --- a/.github/workflows/02.1.intelligent_link_cleaner.yml +++ b/.github/workflows/02.1.intelligent_link_cleaner.yml @@ -41,7 +41,7 @@ jobs: pip install --no-cache-dir pydantic PyGithub aiohttp beautifulsoup4 httpx fake-useragent pytz python-dotenv playwright PyYAML tenacity - name: Cache Playwright Binaries - uses: actions/cache@v5 + uses: actions/cache@v4 id: playwright-cache with: path: ~/.cache/ms-playwright diff --git a/.github/workflows/02.2.agentic_v2_health.yml b/.github/workflows/02.2.agentic_v2_health.yml index d56c8cf7..9cc71521 100644 --- a/.github/workflows/02.2.agentic_v2_health.yml +++ b/.github/workflows/02.2.agentic_v2_health.yml @@ -58,7 +58,7 @@ jobs: run: python -u -m src.v2_health - name: Create Pull Request for Health Update - uses: peter-evans/create-pull-request@v8 + uses: peter-evans/create-pull-request@v6 with: branch: bot/v2-health-sync base: develop diff --git a/.github/workflows/04.2.agentic_v2_pr_only.yml b/.github/workflows/04.2.agentic_v2_pr_only.yml index 227e3829..cb4a902c 100644 --- a/.github/workflows/04.2.agentic_v2_pr_only.yml +++ b/.github/workflows/04.2.agentic_v2_pr_only.yml @@ -77,7 +77,7 @@ jobs: - name: Create Pull Request for V2 Elite Update id: cpr - uses: peter-evans/create-pull-request@v8 + uses: peter-evans/create-pull-request@v6 with: branch: bot/v2-elite-sync-emergency base: develop diff --git a/.github/workflows/06.deploy_final.yml b/.github/workflows/06.deploy_final.yml index db90b6e3..efd0a1ad 100644 --- a/.github/workflows/06.deploy_final.yml +++ b/.github/workflows/06.deploy_final.yml @@ -3,7 +3,7 @@ on: push: branches: - master - workflow_dispatch: + workflow_dispatch: {} # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: @@ -22,12 +22,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout master - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: true - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.11' cache: 'pip' @@ -71,10 +71,10 @@ jobs: EOF - name: Setup Pages - uses: actions/configure-pages@v4 + uses: actions/configure-pages@v6 - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: './site' @@ -88,4 +88,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5