Skip to content

Bump the github-actions group with 4 updates - #34116

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/github_actions/github-actions-817828d6d5
Open

dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/github_actions/github-actions-817828d6d5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 22, 2026 •

Copy link
Copy Markdown
Contributor

🤖 PR Validation — ️✔️ All clear

Breaking Changes Tests
️✔️ None ️✔️ 130/130

Bumps the github-actions group with 4 updates: actions/checkout, mshick/add-pr-comment, actions/github-script and Azure/login.

Updates actions/checkout from 4.4.0 to 7.0.1

Release notes

Sourced from actions/checkout's releases.

v7.0.1

What's Changed

Full Changelog: actions/checkout@v7...v7.0.1

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

v6.1.0

What's Changed

https://github.blog/changelog/2026-06-18-safer-pull_request_target-defaults-for-github-actions-checkout/ for more details about this breaking change

Full Changelog: actions/checkout@v6.0.3...v6.1.0

v6.0.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v6...v6.0.3

v6.0.2

What's Changed

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.1

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Updates mshick/add-pr-comment from 2.8.2 to 3.12.0

Release notes

Sourced from mshick/add-pr-comment's releases.

v3.12.0

3.12.0 (2026-06-19)

Features

  • support minimizing (hiding) comments (#201) (6a876db)

Bug Fixes

  • handle delete-on-status in proxy comment path (#199) (4361959)

v3.11.0

3.11.0 (2026-04-23)

Features

  • add NOW template variable with configurable date format (#193) (87fe9ef)

v3.10.1

3.10.1 (2026-04-23)

Bug Fixes

  • skip comment creation when deleteOnStatus matches status (#187) (f160eba)

v3.10.0

3.10.0 (2026-04-02)

Features

  • add truncate-separator input and markdown termination (#184) (6bd445f)

v3.9.1

3.9.1 (2026-03-31)

Bug Fixes

v3.9.0

3.9.0 (2026-03-14)

Features

... (truncated)

Changelog

Sourced from mshick/add-pr-comment's changelog.

Changelog

3.12.0 (2026-06-19)

Features

  • support minimizing (hiding) comments (#201) (6a876db)

Bug Fixes

  • handle delete-on-status in proxy comment path (#199) (4361959)

3.11.0 (2026-04-23)

Features

  • add NOW template variable with configurable date format (#193) (87fe9ef)

3.10.1 (2026-04-23)

Bug Fixes

  • skip comment creation when deleteOnStatus matches status (#187) (f160eba)

3.10.0 (2026-04-02)

Features

  • add truncate-separator input and markdown termination (#184) (6bd445f)

3.9.1 (2026-03-31)

Bug Fixes

3.9.0 (2026-03-14)

Features

  • add library exports for programmatic usage (#169) (277cebd)

3.8.0 (2026-03-14)

... (truncated)

Commits
  • ec328af chore(main): release 3.12.0 (#200)
  • 6a876db feat: support minimizing (hiding) comments (#201)
  • 4361959 fix: handle delete-on-status in proxy comment path (#199)
  • dbaea9f chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates (#...
  • 3f6e586 chore(deps): bump fast-xml-builder from 1.1.5 to 1.2.0 in the npm_and_yarn gr...
  • 8e49278 chore(main): release 3.11.0 (#194)
  • 87fe9ef feat: add NOW template variable with configurable date format (#193)
  • be5d48d chore(main): release 3.10.1 (#191)
  • 14d916e chore(deps): bump fast-xml-parser from 5.5.9 to 5.7.1 in the npm_and_yarn gro...
  • f160eba fix: skip comment creation when deleteOnStatus matches status (#187)
  • Additional commits viewable in compare view

Updates actions/github-script from 7.1.0 to 9.0.0

Release notes

Sourced from actions/github-script's releases.

v9.0.0

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

v8.0.0

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

Commits
  • 3a2844b Merge pull request #700 from actions/salmanmkc/expose-getoctokit + prepare re...
  • ca10bbd fix: use @​octokit/core/types import for v7 compatibility
  • 86e48e2 merge: incorporate main branch changes
  • c108472 chore: rebuild dist for v9 upgrade and getOctokit factory
  • afff112 Merge pull request #712 from actions/salmanmkc/deployment-false + fix user-ag...
  • ff8117e ci: fix user-agent test to handle orchestration ID
  • 81c6b78 ci: use deployment: false to suppress deployment noise from integration tests
  • 3953caf docs: update README examples from @​v8 to @​v9, add getOctokit docs and v9 brea...
  • c17d55b ci: add getOctokit integration test job
  • a047196 test: add getOctokit integration tests via callAsyncFunction
  • Additional commits viewable in compare view

Updates Azure/login from 2.1.0 to 3.1.0

Release notes

Sourced from Azure/login's releases.

Azure Login Action v3.1.0

What's Changed

New Contributors

Full Changelog: Azure/login@v3.0.2...v3.1.0

Azure Login Action v3.0.2

What's Changed

Security & hardening

  • Refactor PowerShell login to a static param()-bound script — eliminates string-interpolation in the AzPS login path so credential/config values can never be re-parsed as PowerShell (injection-safe by construction) by @​MaddyMicrosoft in Azure/login#607
  • Pin third-party GitHub Actions to commit SHAs — supply-chain hardening for the CI/release workflows by @​MaddyMicrosoft in Azure/login#615
  • Add admin-gated Release workflow — reproducible, approval-gated release + rollback pipeline by @​MaddyMicrosoft in Azure/login#610

Telemetry

  • Emit the real action ref in telemetry via GITHUB_ACTION_REF — corrects the previously stale hard-coded value so usage reports the version consumers actually pin by @​MaddyMicrosoft in Azure/login#614

Dependencies

Maintenance & docs

Full Changelog: Azure/login@v3.0.1...v3.1.0

Azure Login Action v3.0.1

What's Changed

Full Changelog: https://github.com/Azure/login/commits/v3.0.1

... (truncated)

Commits
  • a641126 prepare release v3.1.0
  • 3c5b5ce Add max-context-population input to override Azure PowerShell MaxCont… (#642)
  • fcd0340 Bump browserslist from 4.21.4 to 4.28.8 (#637)
  • 5a8018f Bump js-yaml from 3.14.2 to 3.15.2 (#643)
  • a23dddf ci: reduce scheduled test frequency and clarify workflow names (#639)
  • 4c016e0 docs: document immutable release model and correct branch reference (#640)
  • 63f3c38 Automate release tagging via deploy key + self-pin bump (#638)
  • 92a0b67 Add the ability to prevent the masking of clientId (#634)
  • 5cb857d Pin GitHub Actions to full-length commit SHAs (#636)
  • d90bae5 Cap @​actions/exec and @​actions/core below the ESM-only 3.x majors (#628)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [mshick/add-pr-comment](https://github.com/mshick/add-pr-comment), [actions/github-script](https://github.com/actions/github-script) and [Azure/login](https://github.com/azure/login).


Updates `actions/checkout` from 4.4.0 to 7.0.1
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@11d5960...3d3c42e)

Updates `mshick/add-pr-comment` from 2.8.2 to 3.12.0
- [Release notes](https://github.com/mshick/add-pr-comment/releases)
- [Changelog](https://github.com/mshick/add-pr-comment/blob/main/CHANGELOG.md)
- [Commits](mshick/add-pr-comment@b8f338c...ec328af)

Updates `actions/github-script` from 7.1.0 to 9.0.0
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@f28e40c...3a2844b)

Updates `Azure/login` from 2.1.0 to 3.1.0
- [Release notes](https://github.com/azure/login/releases)
- [Commits](Azure/login@6b24568...a641126)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: mshick/add-pr-comment
  dependency-version: 3.12.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/github-script
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: Azure/login
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Sep 22, 2026
Copilot AI lite review requested due to automatic review settings September 22, 2026 20:17
@azure-client-tools-bot-prd

Copy link
Copy Markdown

Hi Dependabot (@dependabot)[bot],
Since the current milestone time is less than 7 days, this pr will be reviewed in the next milestone.

@microsoft-github-policy-service microsoft-github-policy-service Bot added the customer-reported Issues that are reported by GitHub users external to the Azure organization. label Sep 22, 2026
@microsoft-github-policy-service

Copy link
Copy Markdown
Contributor

Thank you for your contribution Dependabot (@dependabot)[bot]! We will review the pull request and get back to you soon.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Copilot review overview

🟡 Changes recommended

The shared environment-setup action still uses checkout v4.4.0 for the style and linter workflows.

Get a fresh assessment by requesting another Copilot review.

Review effort: Lite
Findings: 2 Medium severity

Open (2)
What changed in this PR

Updates four pinned GitHub Actions across seven CI and automation workflows.

Changes:

  • Upgrades checkout, GitHub Script, Azure Login, and PR comment actions.
  • Refreshes workflow references to immutable action revisions.
File Summary
.github/​workflows/​TriggerReferenceDocsCI.yml Upgrades Azure Login.
.github/​workflows/​GitHookNotice.yml Upgrades checkout.
.github/​workflows/​CCOA.yml Upgrades GitHub Script.
.github/​workflows/​BlockPRMerge.yml Upgrades GitHub Script.
.github/​workflows/​AzdevStyle.yml Upgrades checkout.
.github/​workflows/​AzdevLinter.yml Upgrades checkout.
.github/​workflows/​AddIssueCommentWithLabel.yml Upgrades checkout and PR comment actions.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

steps:
- name: Checkout CLI repo
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
steps:
- name: Checkout CLI repo
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
@yonzhan

Copy link
Copy Markdown
Collaborator

Bump the github-actions group

This branch has not been deployed

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

Labels

customer-reported Issues that are reported by GitHub users external to the Azure organization. dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants