Skip to content

Update docs-deploy workflow to latest action versions#147

Closed
Copilot wants to merge 4 commits intomainfrom
copilot/fix-53726418-372015012-de8686f8-0f71-466c-8904-7e3df75fa453
Closed

Update docs-deploy workflow to latest action versions#147
Copilot wants to merge 4 commits intomainfrom
copilot/fix-53726418-372015012-de8686f8-0f71-466c-8904-7e3df75fa453

Conversation

Copy link

Copilot AI commented Nov 3, 2025

The docs-deploy workflow was using deprecated GitHub Actions versions and an EOL Node.js runtime.

Changes

  • Actions updated to v4: actions/checkout@v2.3.5v4, actions/setup-node@v2v4, crazy-max/ghaction-github-pages@v2v4
  • Node.js runtime: 14 (EOL April 2023) → 20 (current LTS)
  • Security: Added explicit permissions: contents: write to limit GITHUB_TOKEN scope
  • Tracking: Removed .github/.gitignore that was preventing workflow versioning
jobs:
  deploy:
    permissions:
      contents: write
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: "20"
      - uses: crazy-max/ghaction-github-pages@v4
Original prompt

update docs-deploy pipeline yaml with latest action versions and fix deprecated stuff


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 3 commits November 3, 2025 13:38
Co-authored-by: Pushpavel <53726418+Pushpavel@users.noreply.github.com>
Co-authored-by: Pushpavel <53726418+Pushpavel@users.noreply.github.com>
Co-authored-by: Pushpavel <53726418+Pushpavel@users.noreply.github.com>
Copilot AI changed the title [WIP] update docs-deploy pipeline yaml with latest action versions and fix deprecated stuff Update docs-deploy workflow to latest action versions Nov 3, 2025
Copilot AI requested a review from Pushpavel November 3, 2025 13:49
@Pushpavel Pushpavel changed the base branch from main to docs November 3, 2025 13:52
@Pushpavel Pushpavel changed the base branch from docs to main November 3, 2025 13:53
@Pushpavel
Copy link
Owner

@copilot Make the changes on docs branch, not in main branch

Copy link
Author

Copilot AI commented Nov 3, 2025

@copilot Make the changes on docs branch, not in main branch

I understand you'd like this PR to target the docs branch instead of main. However, I don't have the ability to change the base branch of an existing PR.

You can change the base branch yourself by:

  1. Going to the PR page on GitHub
  2. Clicking "Edit" next to the title
  3. Clicking "Edit" on the base branch dropdown
  4. Selecting docs as the new base branch

Alternatively, if you'd prefer, I can revert all changes and you can close this PR, then create a new issue requesting the same changes but specifying the docs branch as the target.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants