Skip to content

chore(deps): bump the actions group across 1 directory with 2 updates - #730

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions-2e6ec6d06e
Closed

chore(deps): bump the actions group across 1 directory with 2 updates#730
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions-2e6ec6d06e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 26, 2026

Copy link
Copy Markdown
Contributor

Bumps the actions group with 2 updates in the / directory: taiki-e/install-action and dawidd6/action-send-mail.

Updates taiki-e/install-action from 2.86.5 to 2.86.6

Release notes

Sourced from taiki-e/install-action's releases.

2.86.6

  • Update dprint@latest to 0.56.1.

  • Update cargo-lambda@latest to 1.9.2.

  • Update biome@latest to 2.5.10.

Changelog

Sourced from taiki-e/install-action's changelog.

[2.86.6] - 2026-08-23

  • Update dprint@latest to 0.56.1.

  • Update cargo-lambda@latest to 1.9.2.

  • Update biome@latest to 2.5.10.

Commits

Updates dawidd6/action-send-mail from 3.12.0 to 18

Release notes

Sourced from dawidd6/action-send-mail's releases.

v18

What's Changed

Full Changelog: dawidd6/action-send-mail@v17...v18

v17

What's Changed

Full Changelog: dawidd6/action-send-mail@v16...v17

v16

What's Changed

Full Changelog: dawidd6/action-send-mail@v15...v16

v15

What's Changed

Full Changelog: dawidd6/action-send-mail@v14...v15

v14

What's Changed

... (truncated)

Commits
  • 94de994 fix: Use extended HELLO with github.com domain (#302)
  • 6e50282 build(deps): bump actions/checkout from 6 to 7 (#300)
  • 1d138f3 build(deps): bump nodemailer from 9.0.0 to 9.0.1 (#299)
  • 1369c5b node_modules: update (#297)
  • d86d472 build(deps): bump nodemailer from 8.0.11 to 9.0.0 (#296)
  • 19dc783 build(deps): bump nodemailer from 8.0.10 to 8.0.11 (#295)
  • 0dd1be8 build(deps): bump nodemailer from 8.0.9 to 8.0.10 (#294)
  • 6bf8b9c build(deps): bump nodemailer from 8.0.8 to 8.0.9 (#293)
  • 51e2c0d build(deps): bump nodemailer from 8.0.7 to 8.0.8 (#292)
  • 076b075 build(deps): bump brace-expansion from 5.0.5 to 5.0.6 (#291)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code major Load-bearing / requirements-level work labels Aug 26, 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.

@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

This PR updates GitHub Actions dependencies. While the automated analysis indicates the code is up to standards, there are two significant points of concern. First, the update for dawidd6/action-send-mail involves a major version jump from v3.12.0 to v18; the lack of information regarding changes between v3 and v14 suggests a high risk of breaking changes that could disrupt the email notification workflow. Second, the PR continues the use of mutable version tags for actions. For a repository handling security policies and sensitive credentials, it is strongly recommended to pin these actions to specific commit SHAs to prevent supply chain attacks.

About this PR

  • The update for dawidd6/action-send-mail represents a significant major version jump from v3.12.0 to v18. Since information regarding changes between v3 and v14 is not provided in the release notes, there is a risk of breaking changes affecting the workflow execution. Please verify the compatibility of the current configuration with v18.

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


- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔴 HIGH RISK

Suggestion: Switch to a commit SHA to ensure the action is immutable. This is a standard hardening practice for GitHub Actions to prevent automated tag-based exploits.\n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for taiki-e/install-action@v2.86.6 and update the uses field in .github/workflows/tests.yml to use the SHA with the version tag in a comment.

See Issue in Codacy


- name: Install cargo-deny
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔴 HIGH RISK

Suggestion: Pin this action to a commit SHA. In a security-focused workflow, relying on mutable tags for tool installation introduces an unnecessary supply chain vector.\n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for taiki-e/install-action@v2.86.6 and update the uses field in .github/workflows/security-policy.yml to use the SHA with the version tag in a comment.

See Issue in Codacy

Comment thread .github/workflows/ci.yml

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔴 HIGH RISK

Suggestion: Use a commit SHA for this action to guarantee the integrity of your CI environment. Mutable tags like v2.86.6 do not provide the same security guarantees as a fixed SHA.\n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for taiki-e/install-action@v2.86.6 and update the uses field in .github/workflows/ci.yml to use the SHA with the version tag in a comment.

See Issue in Codacy

steps:
- name: Send push notification email
uses: dawidd6/action-send-mail@v3.12.0
uses: dawidd6/action-send-mail@v18

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔴 HIGH RISK

Suggestion: Pin this action to a full commit SHA to protect your SMTP secrets. This ensures that the code handling your credentials cannot be changed without an explicit review of the new SHA.\n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for dawidd6/action-send-mail@v18 and update the uses field in .github/workflows/push-email-notify.yml to use the SHA with the version tag in a comment (e.g., uses: dawidd6/action-send-mail@ # v18).

See Issue in Codacy


- name: Install just
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔴 HIGH RISK

Suggestion: Pin this third-party action to a full 40-character commit SHA to ensure build immutability and security. \n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for taiki-e/install-action@v2.86.6 and update the uses field in .github/workflows/build-gossamer-gui.yml to use the SHA with the version tag in a comment (e.g., uses: taiki-e/install-action@ # v2.86.6).

See Issue in Codacy

Bumps the actions group with 2 updates in the / directory: [taiki-e/install-action](https://github.com/taiki-e/install-action) and [dawidd6/action-send-mail](https://github.com/dawidd6/action-send-mail).


Updates `taiki-e/install-action` from 2.86.5 to 2.86.6
- [Release notes](https://github.com/taiki-e/install-action/releases)
- [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md)
- [Commits](taiki-e/install-action@v2.86.5...v2.86.6)

Updates `dawidd6/action-send-mail` from 3.12.0 to 18
- [Release notes](https://github.com/dawidd6/action-send-mail/releases)
- [Commits](dawidd6/action-send-mail@v3.12.0...v18)

---
updated-dependencies:
- dependency-name: dawidd6/action-send-mail
  dependency-version: '18'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: taiki-e/install-action
  dependency-version: 2.86.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/github_actions/actions-2e6ec6d06e branch from 850fb34 to 5b57c01 Compare August 26, 2026 23:27
@dependabot @github

dependabot Bot commented on behalf of github Aug 27, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 27, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/actions-2e6ec6d06e branch August 27, 2026 21:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code major Load-bearing / requirements-level work

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant