Skip to content

Update github actions (major)#137

Merged
david-driscoll merged 1 commit into
mainfrom
renovate/major-github-actions
Jul 1, 2026
Merged

Update github actions (major)#137
david-driscoll merged 1 commit into
mainfrom
renovate/major-github-actions

Conversation

@renovate

@renovate renovate Bot commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
actions/checkout action major v4v7
actions/deploy-pages action major v4v5
actions/github-script action major v7v9
actions/upload-pages-artifact action major v3v5

Release Notes

actions/checkout (actions/checkout)

v7.0.0

Compare Source

v7

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

v6

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

v5

Compare Source

actions/deploy-pages (actions/deploy-pages)

v5.0.0

Compare Source

Changelog

See details of all code changes since previous release.

⚠️ For use with products other than GitHub.com, such as GitHub Enterprise Server, please consult the compatibility table.

v5

Compare Source

actions/github-script (actions/github-script)

v9.0.0

Compare Source

New features:

  • getOctokit factory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment variable is automatically appended to the user-agent string for request tracing.

Breaking changes:

  • require('@​actions/github') no longer works in scripts. The upgrade to @actions/github v9 (ESM-only) means require('@​actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@​actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, you may need to update those references for v9 compatibility.
What's Changed
New Contributors

Full Changelog: actions/github-script@v8.0.0...v9.0.0

v9

Compare Source

v8.0.0

Compare Source

v8: .0.0

Compare Source

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

New Contributors

Full Changelog: actions/github-script@v7.1.0...v8.0.0

actions/upload-pages-artifact (actions/upload-pages-artifact)

v5.0.0

Compare Source

Changelog

See details of all code changes since previous release.

v5

Compare Source

v4.0.0

Compare Source

What's Changed

Full Changelog: actions/upload-pages-artifact@v3.0.1...v4.0.0

v4

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the 🚚 private-dependencies Private dependency label Jun 30, 2026
@codacy-production

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

AI Reviewer: first review requested successfully. AI can make mistakes. Always validate suggestions.

Run reviewer

TIP This summary will be updated as you push new changes.

@github-actions github-actions Bot added the :shipit: merge Shipit! label Jun 30, 2026
@github-actions github-actions Bot added this to the v0.0.3 milestone Jun 30, 2026
@github-actions

github-actions Bot commented Jun 30, 2026

Copy link
Copy Markdown

Test Results

0 tests  ±0   0 ✅ ±0   0s ⏱️ ±0s
0 suites ±0   0 💤 ±0 
0 files   ±0   0 ❌ ±0 

Results for commit fab2779. ± Comparison against base commit fa2d09b.

♻️ This comment has been updated with latest results.

@codacy-production codacy-production Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

The PR performs major version updates for core GitHub Actions including actions/checkout, actions/deploy-pages, actions/github-script, and actions/upload-pages-artifact. While the quality analysis is positive, there are significant functional risks associated with these major jumps.

Specifically, actions/upload-pages-artifact@v5 now excludes hidden files (dotfiles) by default. This change frequently breaks GitHub Pages deployments that rely on files like .nojekyll to bypass Jekyll processing. Additionally, the move to actions/github-script@v9 introduces a transition to ESM-only execution, which may break existing scripts that rely on CommonJS syntax or specific internal imports. These risks should be validated before merging to ensure CI/CD stability.

Test suggestions

  • Verify 'Squad Heartbeat' workflow execution with github-script@v9 (ensure no ESM compatibility issues).
  • Verify 'Squad Issue Assign' workflow correctly interacts with GitHub API using github-script@v9.
  • Confirm GitHub Pages deployment includes necessary dotfiles (e.g., .nojekyll) after upload-pages-artifact@v5 update.
Prompt proposal for missing tests
Consider implementing these tests if applicable:
1. Verify 'Squad Heartbeat' workflow execution with github-script@v9 (ensure no ESM compatibility issues).
2. Verify 'Squad Issue Assign' workflow correctly interacts with GitHub API using github-script@v9.
3. Confirm GitHub Pages deployment includes necessary dotfiles (e.g., .nojekyll) after upload-pages-artifact@v5 update.
Low confidence findings
  • While the inline scripts in this PR are relatively simple, the update to actions/github-script@v9 enforces ESM. If any of the workflows (e.g., triage or heartbeat) involve complex logic or external dependencies that rely on CommonJS require calls, they may fail during execution.

TIP Improve review quality by adding custom instructions
TIP How was this review? Give us feedback

Comment thread .github/workflows/deploy-docs.yml
@renovate renovate Bot force-pushed the renovate/major-github-actions branch 10 times, most recently from b7d8282 to fab2779 Compare July 1, 2026 15:00
@renovate renovate Bot enabled auto-merge July 1, 2026 15:55
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from fab2779 to 031b2e4 Compare July 1, 2026 15:55
@david-driscoll david-driscoll disabled auto-merge July 1, 2026 15:58
@david-driscoll david-driscoll merged commit 1b0e908 into main Jul 1, 2026
5 of 7 checks passed
@david-driscoll david-driscoll deleted the renovate/major-github-actions branch July 1, 2026 15:58
@github-actions github-actions Bot removed the :shipit: merge Shipit! label Jul 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🚚 private-dependencies Private dependency

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant