Bump the github-actions group across 1 directory with 13 updates - #16347
Bump the github-actions group across 1 directory with 13 updates#16347dependabot[bot] wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Pull request overview
Note
Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.
Updates multiple GitHub Actions workflows to newer pinned revisions, primarily refreshing action SHAs/versions for caching, checkout, artifacts, and runtime setup.
Changes:
- Bumped pinned SHAs for common GitHub Actions (cache, checkout, download/upload-artifact, setup-node/python/dotnet) across many workflow lock files.
- Updated
github/gh-aw-actionsaction pins to a newer release in both lock files and non-lock workflows. - Updated
super-linterpin in the markdown linter workflow.
Reviewed changes
Copilot reviewed 17 out of 17 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/repository-quality-improver.lock.yml | Refreshes pinned action SHAs used by the repository quality workflow. |
| .github/workflows/pr-iteration.lock.yml | Refreshes pinned action SHAs used by PR iteration workflow. |
| .github/workflows/pr-expert-reviewer.lock.yml | Refreshes pinned action SHAs used by expert reviewer workflow. |
| .github/workflows/msbuild-quality-review.lock.yml | Refreshes pinned action SHAs used by MSBuild quality review workflow. |
| .github/workflows/md-link-checker.lock.yml | Refreshes pinned action SHAs used by markdown link checking workflow. |
| .github/workflows/markdown-linter.lock.yml | Refreshes pinned action SHAs and updates super-linter pin. |
| .github/workflows/malicious-code-scan.lock.yml | Refreshes pinned action SHAs including CodeQL SARIF upload action. |
| .github/workflows/issue-repro-triage.lock.yml | Refreshes pinned action SHAs used by issue repro triage workflow. |
| .github/workflows/http-link-checker.lock.yml | Refreshes pinned action SHAs used by HTTP link checking workflow. |
| .github/workflows/efficiency-improver.lock.yml | Refreshes pinned action SHAs used by efficiency improver workflow. |
| .github/workflows/daily-file-diet.lock.yml | Refreshes pinned action SHAs used by daily file diet workflow. |
| .github/workflows/copilot-setup-steps.yml | Updates checkout action pin for Copilot setup steps workflow. |
| .github/workflows/code-simplifier.lock.yml | Refreshes pinned action SHAs used by code simplifier workflow. |
| .github/workflows/build-failure-analysis.lock.yml | Refreshes pins (incl. setup-dotnet) used by build failure analysis workflow. |
| .github/workflows/build-failure-analysis-command.lock.yml | Refreshes pins (incl. setup-dotnet) used by build failure analysis command workflow. |
| .github/workflows/agentics-maintenance.yml | Updates reusable action pins used in agentics maintenance workflow. |
| .github/workflows/agentic_commands.yml | Updates action references used by agentic command workflow. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | ||
|
|
||
| - name: Setup Scripts | ||
| uses: github/gh-aw-actions/setup@v0.81.6 | ||
| uses: github/gh-aw-actions/setup@v0.84.3 | ||
| with: | ||
| destination: ${{ runner.temp }}/gh-aw/actions |
| # - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4 | ||
| # - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| # - actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 | ||
| # - actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 |
| uses: github/gh-aw-actions/setup-cli@c863074b673419603d146aab585e2986ef08deec # v0.84.3 | ||
| with: | ||
| version: 'v0.81.6' |
7adcd33 to
de2238d
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 17 out of 17 changed files in this pull request and generated no new comments.
Suppressed comments (6)
.github/workflows/build-failure-analysis.lock.yml:502
- The
setup-cliaction is updated to v0.85.4, but the CLI version being installed is still pinned to v0.81.6. If the intent is to upgrade the CLI along with the action, update thewith.versioninput to v0.85.4; otherwise, add a short comment explaining why the older CLI version must remain.
uses: github/gh-aw-actions/setup-cli@2709137ea6c5b0e19aa621454dc643ea8dc526b1 # v0.85.4
with:
version: 'v0.81.6'
.github/workflows/build-failure-analysis-command.lock.yml:514
- This workflow upgrades
actions/setup-dotnetto a new major version. If this was intended, consider adding a brief rationale in the workflow comments (or release notes/PR description) since major-version bumps can include behavior changes (e.g., caching defaults, input validation) and are harder to audit later.
- name: Setup .NET (for NuGet MCP Server)
uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0
.github/workflows/agentics-maintenance.yml:183
- Same mismatch as elsewhere:
setup-cliis bumped to v0.85.4 but the installed CLI remains v0.81.6. Align the installed CLI version with the updated action version (or document why the CLI must remain on v0.81.6).
uses: github/gh-aw-actions/setup-cli@2709137ea6c5b0e19aa621454dc643ea8dc526b1 # v0.85.4
with:
version: v0.81.6
.github/workflows/agentic_commands.yml:53
- This workflow references
github/gh-aw-actions/setupby a mutable tag (@v0.85.4) instead of a commit SHA. For supply-chain hardening (and consistency with the.lock.ymlfiles), pin this to an immutable commit SHA and keep the tag/version in a comment.
- name: Setup Scripts
uses: github/gh-aw-actions/setup@v0.85.4
.github/workflows/efficiency-improver.lock.yml:43
- The 'Custom actions used' list contains a duplicate
actions/download-artifactentry. Remove the duplicate line to keep the audit list clean and reduce confusion during dependency reviews.
# - actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
# - actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
.github/workflows/repository-quality-improver.lock.yml:37
- These two entries list the same pinned SHA as both
actions/checkoutv4 and v7.0.1, which is misleading for audits. Update the 'Custom actions used' section to avoid contradictory version annotations (e.g., list each unique SHA once with the correct version comment, or use distinct SHAs if both majors are truly used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
de2238d to
6008710
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 17 out of 17 changed files in this pull request and generated no new comments.
Suppressed comments (17)
.github/workflows/repository-quality-improver.lock.yml:44
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - github/gh-aw-actions/setup@6aab9e5b5c91c615506061f09bedd81a23babe3c # v0.86.2
#
.github/workflows/agentics-maintenance.yml:322
- This step updates the setup-cli action to v0.86.2, but still installs gh-aw v0.81.6. If the intent is to bump the gh-aw tool alongside the action update, update the requested version to v0.86.2.
uses: github/gh-aw-actions/setup-cli@6aab9e5b5c91c615506061f09bedd81a23babe3c # v0.86.2
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:368
- This step updates the setup-cli action to v0.86.2, but still installs gh-aw v0.81.6. If the intent is to bump the gh-aw tool alongside the action update, update the requested version to v0.86.2.
uses: github/gh-aw-actions/setup-cli@6aab9e5b5c91c615506061f09bedd81a23babe3c # v0.86.2
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:473
- This step updates the setup-cli action to v0.86.2, but still installs gh-aw v0.81.6. If the intent is to bump the gh-aw tool alongside the action update, update the requested version to v0.86.2.
uses: github/gh-aw-actions/setup-cli@6aab9e5b5c91c615506061f09bedd81a23babe3c # v0.86.2
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:602
- This step updates the setup-cli action to v0.86.2, but still installs gh-aw v0.81.6. If the intent is to bump the gh-aw tool alongside the action update, update the requested version to v0.86.2.
uses: github/gh-aw-actions/setup-cli@6aab9e5b5c91c615506061f09bedd81a23babe3c # v0.86.2
with:
version: v0.81.6
.github/workflows/agentic_commands.yml:53
- Most workflows in this repo pin github/gh-aw-actions/setup to a full commit SHA; this workflow still uses a mutable tag (v0.86.2). Pinning to the same SHA used elsewhere reduces supply-chain risk and keeps the repository consistent.
uses: github/gh-aw-actions/setup@v0.86.2
.github/workflows/pr-expert-reviewer.lock.yml:41
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
.github/workflows/msbuild-quality-review.lock.yml:42
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
.github/workflows/http-link-checker.lock.yml:38
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
.github/workflows/efficiency-improver.lock.yml:41
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
.github/workflows/build-failure-analysis-command.lock.yml:42
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
# - actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
.github/workflows/build-failure-analysis.lock.yml:502
- This step updates the setup-cli action to v0.86.2, but still installs gh-aw v0.81.6. If the intent is to bump the gh-aw tool alongside the action update, update the requested version to v0.86.2 (or keep the action pinned to the older setup-cli).
uses: github/gh-aw-actions/setup-cli@6aab9e5b5c91c615506061f09bedd81a23babe3c # v0.86.2
with:
version: 'v0.81.6'
.github/workflows/agentics-maintenance.yml:183
- This step updates the setup-cli action to v0.86.2, but still installs gh-aw v0.81.6. If the intent is to bump the gh-aw tool alongside the action update, update the requested version to v0.86.2.
This issue also appears in the following locations of the same file:
- line 320
- line 366
- line 471
- line 600
uses: github/gh-aw-actions/setup-cli@6aab9e5b5c91c615506061f09bedd81a23babe3c # v0.86.2
with:
version: v0.81.6
.github/workflows/malicious-code-scan.lock.yml:37
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
.github/workflows/daily-file-diet.lock.yml:37
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
.github/workflows/code-simplifier.lock.yml:43
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
.github/workflows/build-failure-analysis.lock.yml:44
- The "Custom actions used" list includes an actions/checkout entry labeled "v4", but the pinned SHA is the v7.0.1 commit and this workflow only uses checkout v7. This is misleading; drop the v4 line (or point it to the actual v4 SHA if v4 is still used).
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
# - actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
6008710 to
a80fdfd
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 18 out of 18 changed files in this pull request and generated 3 comments.
Suppressed comments (5)
.github/workflows/agentics-maintenance.yml:322
- This step uses setup-cli@v0.87.2 but installs gh-aw v0.81.6. If this PR is intended to bump gh-aw, update the installed version to match the upgraded action to avoid version skew.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@b304200a0ef4b3998673bfc7945acb08ab8c88b7 # v0.87.2
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:368
- This step uses setup-cli@v0.87.2 but installs gh-aw v0.81.6. If this PR is intended to bump gh-aw, update the installed version to match the upgraded action to avoid version skew.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@b304200a0ef4b3998673bfc7945acb08ab8c88b7 # v0.87.2
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:473
- This step uses setup-cli@v0.87.2 but installs gh-aw v0.81.6. If this PR is intended to bump gh-aw, update the installed version to match the upgraded action to avoid version skew.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@b304200a0ef4b3998673bfc7945acb08ab8c88b7 # v0.87.2
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:602
- This step uses setup-cli@v0.87.2 but installs gh-aw v0.81.6. If this PR is intended to bump gh-aw, update the installed version to match the upgraded action to avoid version skew.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@b304200a0ef4b3998673bfc7945acb08ab8c88b7 # v0.87.2
with:
version: v0.81.6
.github/workflows/agentic_commands.yml:53
- This workflow references
github/gh-aw-actions/setupby version tag (mutable). Elsewhere in this repo, actions are pinned to full commit SHAs (including other gh-aw-actions usages in the lock workflows). Pin this to the commit SHA for v0.87.2 to improve supply-chain security and make audits deterministic.
uses: github/gh-aw-actions/setup@v0.87.2
| run: bash "${RUNNER_TEMP}/gh-aw/actions/setup_cache_memory_git.sh" | ||
| - name: Checkout repository | ||
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | ||
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4 |
| uses: github/gh-aw-actions/setup-cli@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6 | ||
| uses: github/gh-aw-actions/setup-cli@b304200a0ef4b3998673bfc7945acb08ab8c88b7 # v0.87.2 | ||
| with: | ||
| version: 'v0.81.6' |
| uses: github/gh-aw-actions/setup-cli@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6 | ||
| uses: github/gh-aw-actions/setup-cli@b304200a0ef4b3998673bfc7945acb08ab8c88b7 # v0.87.2 | ||
| with: | ||
| version: v0.81.6 |
a80fdfd to
4c46b01
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 18 out of 18 changed files in this pull request and generated no new comments.
Suppressed comments (8)
.github/workflows/agentics-maintenance.yml:183
- The gh-aw setup-cli action was bumped to v0.87.2, but the installed gh-aw version is still pinned to v0.81.6. This can lead to mismatches between the workflow scripts and the CLI extension; consider bumping the installed version to v0.87.2 as well (or explicitly document why it must remain on v0.81.6).
version: v0.81.6
.github/workflows/agentics-maintenance.yml:322
- The gh-aw setup-cli action was bumped to v0.87.2, but the installed gh-aw version is still pinned to v0.81.6. This can lead to mismatches between the workflow scripts and the CLI extension; consider bumping the installed version to v0.87.2 as well (or explicitly document why it must remain on v0.81.6).
version: v0.81.6
.github/workflows/agentics-maintenance.yml:368
- The gh-aw setup-cli action was bumped to v0.87.2, but the installed gh-aw version is still pinned to v0.81.6. This can lead to mismatches between the workflow scripts and the CLI extension; consider bumping the installed version to v0.87.2 as well (or explicitly document why it must remain on v0.81.6).
version: v0.81.6
.github/workflows/agentics-maintenance.yml:473
- The gh-aw setup-cli action was bumped to v0.87.2, but the installed gh-aw version is still pinned to v0.81.6. This can lead to mismatches between the workflow scripts and the CLI extension; consider bumping the installed version to v0.87.2 as well (or explicitly document why it must remain on v0.81.6).
version: v0.81.6
.github/workflows/agentics-maintenance.yml:602
- The gh-aw setup-cli action was bumped to v0.87.2, but the installed gh-aw version is still pinned to v0.81.6. This can lead to mismatches between the workflow scripts and the CLI extension; consider bumping the installed version to v0.87.2 as well (or explicitly document why it must remain on v0.81.6).
version: v0.81.6
.github/workflows/build-failure-analysis.lock.yml:502
- The setup-cli action was updated to v0.87.2, but it still installs gh-aw v0.81.6. If the workflow expects newer CLI behavior, this can cause runtime failures; consider aligning the installed gh-aw version with the action version.
version: 'v0.81.6'
.github/workflows/http-link-checker.lock.yml:448
- This line now pins actions/checkout to the v7.0.1 commit SHA, but the trailing comment still says "# v4". Updating the comment will avoid confusion during future audits/bumps.
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
.github/workflows/agentic_commands.yml:53
- Most workflows in this repo pin third-party actions to a commit SHA (including other gh-aw-actions usages). This workflow uses a mutable tag (v0.87.2), which weakens supply-chain protections and makes runs less reproducible.
uses: github/gh-aw-actions/setup@v0.87.2
Bumps the github-actions group with 13 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.3.1` | `7.0.1` | | [github/gh-aw-actions](https://github.com/github/gh-aw-actions) | `0.81.6` | `0.87.4` | | [github/gh-aw-actions/setup](https://github.com/github/gh-aw-actions) | `0.81.6` | `0.87.4` | | [github/gh-aw-actions/setup-cli](https://github.com/github/gh-aw-actions) | `0.81.6` | `0.87.4` | | [actions/cache/restore](https://github.com/actions/cache) | `5.0.5` | `6.1.0` | | [actions/cache/save](https://github.com/actions/cache) | `5.0.5` | `6.1.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.2` | `7.0.1` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.3.0` | `8.0.1` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `4.3.1` | `6.0.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `6.4.0` | `7.0.0` | | [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) | `4.36.2` | `4.37.8` | | [super-linter/super-linter](https://github.com/super-linter/super-linter) | `8.6.0` | `8.7.0` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.2.0` | `7.0.0` | Updates `actions/checkout` from 4.3.1 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@v4.3.1...3d3c42e) Updates `github/gh-aw-actions` from 0.81.6 to 0.87.4 - [Release notes](https://github.com/github/gh-aw-actions/releases) - [Changelog](https://github.com/github/gh-aw-actions/blob/main/CHANGELOG.md) - [Commits](github/gh-aw-actions@v0.81.6...v0.87.4) Updates `github/gh-aw-actions/setup` from 0.81.6 to 0.87.4 - [Release notes](https://github.com/github/gh-aw-actions/releases) - [Changelog](https://github.com/github/gh-aw-actions/blob/main/CHANGELOG.md) - [Commits](github/gh-aw-actions@ba6380c...ea4b911) Updates `github/gh-aw-actions/setup-cli` from 0.81.6 to 0.87.4 - [Release notes](https://github.com/github/gh-aw-actions/releases) - [Changelog](https://github.com/github/gh-aw-actions/blob/main/CHANGELOG.md) - [Commits](github/gh-aw-actions@ba6380c...ea4b911) Updates `actions/cache/restore` from 5.0.5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5.0.5...55cc834) Updates `actions/cache/save` from 5.0.5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5.0.5...55cc834) Updates `actions/upload-artifact` from 4.6.2 to 7.0.1 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.6.2...043fb46) Updates `actions/download-artifact` from 4.3.0 to 8.0.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4.3.0...3e5f45b) Updates `actions/setup-dotnet` from 4.3.1 to 6.0.0 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@67a3573...a98b568) Updates `actions/setup-node` from 6.4.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v6.4.0...8207627) Updates `github/codeql-action/upload-sarif` from 4.36.2 to 4.37.8 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@8aad20d...db488dd) Updates `super-linter/super-linter` from 8.6.0 to 8.7.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](super-linter/super-linter@9e86335...4ce2083) Updates `actions/setup-python` from 6.2.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@a309ff8...5fda3b9) --- updated-dependencies: - dependency-name: actions/cache/restore dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache/save dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - 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: actions/download-artifact dependency-version: 8.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-dotnet dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action/upload-sarif dependency-version: 4.37.5 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/gh-aw-actions dependency-version: 0.84.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/gh-aw-actions/setup dependency-version: 0.84.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/gh-aw-actions/setup-cli dependency-version: 0.84.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: super-linter/super-linter dependency-version: 8.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
4c46b01 to
b2de867
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 19 out of 19 changed files in this pull request and generated 2 comments.
Suppressed comments (10)
.github/workflows/build-failure-analysis.lock.yml:502
- The workflow installs gh-aw CLI v0.81.6 while the setup-cli action was bumped to v0.87.4; this can lead to mismatches between the CLI behavior and the bundled scripts. Align the installed CLI version with the action version.
- name: Install gh-aw extension
uses: github/gh-aw-actions/setup-cli@ea4b911d44a5336c74325a122a5fd9110b45ff06 # v0.87.4
with:
version: 'v0.81.6'
.github/workflows/agentics-maintenance.yml:183
- This workflow installs gh-aw CLI v0.81.6 but uses setup-cli v0.87.4. Align the installed CLI version with the action version to avoid incompatibilities.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@ea4b911d44a5336c74325a122a5fd9110b45ff06 # v0.87.4
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:322
- This workflow installs gh-aw CLI v0.81.6 but uses setup-cli v0.87.4. Align the installed CLI version with the action version to avoid incompatibilities.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@ea4b911d44a5336c74325a122a5fd9110b45ff06 # v0.87.4
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:368
- This workflow installs gh-aw CLI v0.81.6 but uses setup-cli v0.87.4. Align the installed CLI version with the action version to avoid incompatibilities.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@ea4b911d44a5336c74325a122a5fd9110b45ff06 # v0.87.4
with:
version: v0.81.6
.github/workflows/agentics-maintenance.yml:473
- This workflow installs gh-aw CLI v0.81.6 but uses setup-cli v0.87.4. Align the installed CLI version with the action version to avoid incompatibilities.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@ea4b911d44a5336c74325a122a5fd9110b45ff06 # v0.87.4
with:
version: v0.81.6
.github/workflows/agentic_commands.yml:53
- This workflow uses a floating tag for github/gh-aw-actions/setup. Pinning GitHub Actions to a full commit SHA (as done in the *.lock.yml workflows) reduces supply-chain risk and improves reproducibility.
uses: github/gh-aw-actions/setup@v0.87.4
.github/workflows/agentics-maintenance.yml:602
- This workflow installs gh-aw CLI v0.81.6 but uses setup-cli v0.87.4. Align the installed CLI version with the action version to avoid incompatibilities.
- name: Install gh-aw
uses: github/gh-aw-actions/setup-cli@ea4b911d44a5336c74325a122a5fd9110b45ff06 # v0.87.4
with:
version: v0.81.6
.github/workflows/md-link-checker.lock.yml:455
- The version comment is stale: this pins actions/checkout to v7.0.1 but the trailing comment still says "# v4", which is misleading and inconsistent with other lock workflows.
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
.github/workflows/md-link-checker.lock.yml:1661
- The version comment is stale: this pins actions/checkout to v7.0.1 but the trailing comment still says "# v4", which is misleading and inconsistent with other lock workflows.
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
.github/workflows/http-link-checker.lock.yml:448
- The version comment is stale: this pins actions/checkout to v7.0.1 but the trailing comment still says "# v4", which is misleading and inconsistent with other lock workflows.
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
| await main(); | ||
| - name: Checkout .github and .agents folders | ||
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | ||
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4 |
| - name: Setup Scripts | ||
| id: setup | ||
| uses: github/gh-aw-actions/setup@ba6380cc6e5be5d21677bebe04d52fb48e3abec7 # v0.81.6 | ||
| uses: github/gh-aw-actions/setup@ea4b911d44a5336c74325a122a5fd9110b45ff06 # v0.87.4 | ||
| with: |
Bumps the github-actions group with 13 updates in the / directory:
4.3.17.0.10.81.60.87.40.81.60.87.40.81.60.87.45.0.56.1.05.0.56.1.04.6.27.0.14.3.08.0.14.3.16.0.06.4.07.0.04.36.24.37.88.6.08.7.06.2.07.0.0Updates
actions/checkoutfrom 4.3.1 to 7.0.1Release notes
Sourced from actions/checkout's releases.
... (truncated)
Changelog
Sourced from actions/checkout's changelog.
... (truncated)
Commits
3d3c42eprep v7.0.1 release (#2531)2880268escape values passed to --unset (#2530)12cd223trim only ascii whitespace for branch (#2521)62661c4skip running unsafe pr check if input is default (#2518)e8d4307Bump the minor-actions-dependencies group with 2 updates (#2499)631c942eslint 9 (#2474)4f1f4aeBump actions/upload-artifact from 4 to 7 (#2476)ba09753Bump actions/checkout from 6 to 7 (#2488)b9e0990Bump docker/login-action from 3.3.0 to 4.2.0 (#2479)e8cb398Bump docker/build-push-action from 6.5.0 to 7.2.0 (#2478)Updates
github/gh-aw-actionsfrom 0.81.6 to 0.87.4Release notes
Sourced from github/gh-aw-actions's releases.
... (truncated)
Commits
ea4b911chore: sync actions from gh-aw@v0.87.4 (#217)b304200chore: sync actions from gh-aw@v0.87.2 (#216)423b3dcchore: sync actions from gh-aw@v0.87.1 (#215)b77e0d5chore: sync actions from gh-aw@v0.87.0 (#214)30aadb1chore: sync actions from gh-aw@v0.86.3 (#213)6aab9e5chore: sync actions from gh-aw@v0.86.2 (#212)8914f47chore: sync actions from gh-aw@v0.86.1 (#211)19356acchore: sync actions from gh-aw@v0.86.0 (#210)2709137chore: sync actions from gh-aw@v0.85.4 (#209)b078ca2chore: sync actions from gh-aw@v0.85.1 (#208)Updates
github/gh-aw-actions/setupfrom 0.81.6 to 0.87.4Release notes
Sourced from github/gh-aw-actions/setup's releases.
... (truncated)
Commits
ea4b911chore: sync actions from gh-aw@v0.87.4 (#217)b304200chore: sync actions from gh-aw@v0.87.2 (#216)423b3dcchore: sync actions from gh-aw@v0.87.1 (#215)b77e0d5chore: sync actions from gh-aw@v0.87.0 (#214)30aadb1chore: sync actions from gh-aw@v0.86.3 (#213)6aab9e5chore: sync actions from gh-aw@v0.86.2 (#212)8914f47chore: sync actions from gh-aw@v0.86.1 (#211)19356acchore: sync actions from gh-aw@v0.86.0 (#210)2709137chore: sync actions from gh-aw@v0.85.4 (#209)b078ca2chore: sync actions from gh-aw@v0.85.1 (#208)Updates
github/gh-aw-actions/setup-clifrom 0.81.6 to 0.87.4Release notes
Sourced from github/gh-aw-actions/setup-cli's releases.
... (truncated)
Commits
ea4b911chore: sync actions from gh-aw@v0.87.4 (#217)b304200chore: sync actions from gh-aw@v0.87.2 (#216)423b3dcchore: sync actions from gh-aw@v0.87.1 (#215)b77e0d5chore: sync actions from gh-aw@v0.87.0 (#214)30aadb1chore: sync actions from gh-aw@v0.86.3 (#213)6aab9e5chore: sync actions from gh-aw@v0.86.2 (#212)8914f47chore: sync actions from gh-aw@v0.86.1 (#211)19356acchore: sync actions from gh-aw@v0.86.0 (#210)2709137chore: sync actions from gh-aw@v0.85.4 (#209)b078ca2chore: sync actions from gh-aw@v0.85.1 (#208)Updates
actions/cache/restorefrom 5.0.5 to 6.1.0Release notes
Sourced from actions/cache/restore's releases.
Changelog
Sourced from actions/cache/restore's changelog.
... (truncated)
Commits
55cc834Merge pull request #1768 from jasongin/readonly-cached8cd72fBump@actions/cacheto v6.1.0 - handle cache write error due to RO token2c8a9bdMerge pull request #1760 from actions/samirat/esm_migration_and_package_updatee9b91fdPrettier fixese4884b8Rebuild dist10baf01Fixed licensese39b386Fix test mock return orderb692820PR feedback6074912Rebuild dist bundles as ESM to match type:module5a912e8Fix lint and jest issuesUpdates
actions/cache/savefrom 5.0.5 to 6.1.0Release notes
Sourced from actions/cache/save's releases.
Changelog
Sourced from actions/cache/save's changelog.
... (truncated)
Commits
55cc834Merge pull request #1768 from jasongin/readonly-cached8cd72fBump@actions/cacheto v6.1.0 - handle cache write error due to RO token2c8a9bdMerge pull request #1760 from actions/samirat/esm_migration_and_package_updatee9b91fdPrettier fixese4884b8Rebuild dist10baf01Fixed licensese39b386Fix test mock return orderb692820PR feedback6074912Rebuild dist bundles as ESM to match type:module5a912e8Fix lint and jest issuesUpdates
actions/upload-artifactfrom 4.6.2 to 7.0.1Release notes
Sourced from actions/upload-artifact's releases.
... (truncated)
Commits
043fb46Merge pull request #797 from actions/yacaovsnc/update-dependency634250cInclude changes in typespec/ts-http-runtime 0.3.5e454baaReadme: bump all the example versions to v7 (#796)74fad66Update the readme with direct upload details (#795)bbbca2dSupport direct file uploads (#764)589182cUpgrade the module to ESM and bump dependencies (#762)47309c9Merge pull request #754 from actions/Link-/add-proxy-integration-tests02a8460Add proxy integration testb7c566aMerge pull request #745 from actions/upload-artifact-v6-releasee516bc8docs: correct description of Node.js 24 support in READMEUpdates
actions/download-artifactfrom 4.3.0 to 8.0.1Release notes
Sourced from actions/download-artifact's releases.
... (truncated)
Commits
3e5f45bAdd regression tests for CJK characters (#471)e6d03f6Add a regression test for artifact name + content-type mismatches (#472)70fc10cMerge pull request #461 from actions/danwkennedy/digest-mismatch-behaviorf258da9Add change docsccc058eFix linting issuesbd7976bAdd a setting to specify what to do on hash mismatch and default it toerrorac21fcfMerge pull request #460 from actions/danwkennedy/download-no-unzip15999bfAdd note about package bumps974686eBump the version tov8and add release notesfbe48b1Update test names to make it clearer what they doUpdates
actions/setup-dotnetfrom 4.3.1 to 6.0.0Release notes
Sourced from actions/setup-dotnet's releases.
... (truncated)
Commits
a98b568chore(deps...Description has been truncated