Skip to content

chore(deps): update dawidd6/action-send-mail action to v18#88

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dawidd6-action-send-mail-18.x
Closed

chore(deps): update dawidd6/action-send-mail action to v18#88
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dawidd6-action-send-mail-18.x

Conversation

@renovate

@renovate renovate Bot commented Jul 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
dawidd6/action-send-mail action major v3.12.0v18

Release Notes

dawidd6/action-send-mail (dawidd6/action-send-mail)

v18

Compare Source

What's Changed

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

v17

Compare Source

What's Changed

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

v16

Compare Source

What's Changed

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

v15

Compare Source

What's Changed

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

v14

Compare Source

What's Changed

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

v13

Compare Source

What's Changed

Full Changelog: dawidd6/action-send-mail@v12...v13

v12

Compare Source

Possible Breaking Change

from input now needs to be in one of those forms:

  • Plain Simple Name <user@example.com>
  • user@example.com

What's Changed

New Contributors

Full Changelog: dawidd6/action-send-mail@v11...v12

v11

Compare Source

What's Changed

New Contributors

Full Changelog: dawidd6/action-send-mail@v10...v11

v10

Compare Source

What's Changed

Full Changelog: dawidd6/action-send-mail@v9...v10

v9

Compare Source

What's Changed

Full Changelog: dawidd6/action-send-mail@v8...v9

v8

Compare Source

What's Changed

New Contributors

Full Changelog: dawidd6/action-send-mail@v7...v8

v7

Compare Source

What's Changed

Full Changelog: dawidd6/action-send-mail@v6...v7

v6

Compare Source

What's Changed

Full Changelog: dawidd6/action-send-mail@v5...v6

v5

Compare Source

What's Changed

New Contributors

Full Changelog: dawidd6/action-send-mail@v4...v5

v4

Compare Source

What's Changed

Full Changelog: dawidd6/action-send-mail@v3.12.0...v4


Configuration

📅 Schedule: (in timezone Asia/Tokyo)

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@github-actions github-actions 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.

このPRは dawidd6/action-send-mail アクションを v3.12.0 から v18 へアップデートするものです。コミットハッシュによるピン留めも維持されており、セキュリティ面での配慮も適切です。

ただし、v12のリリースノートに**破壊的変更(Breaking Change)**が含まれており、from 入力の形式が制限されるようになっています。現在のワークフローで使用している from の値が新しい形式要件を満たしているか確認が必要です。


- name: Send notification email to lab ML
uses: dawidd6/action-send-mail@2cea9617b09d79a095af21254fbcb7ae95903dde # v3.12.0
uses: dawidd6/action-send-mail@94de994a9f6fffee200243214e17002e2920bb59 # 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.

⚠️ [MEDIUM] v12 のリリースノートに 破壊的変更 が記載されています。from 入力は以下のいずれかの形式である必要があります:

  • Plain Simple Name <user@example.com>
  • user@example.com

ワークフロー内の from パラメータ(シークレット経由の場合も含む)が上記形式に準拠しているか確認してください。形式が合わない場合、メール送信が失敗する可能性があります。

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

裏取りしました。v3→v18 の全メジャーのリリースノートを確認した結果、この用途に影響する破壊的変更は v12 の from 形式のみでした(他メジャー v4-v18 に該当変更なし。使用中の server_address/port/username/password/subject/to/body は全バージョン互換)。

v12 の要件: fromuser@example.com または Plain Simple Name <user@example.com> 形式が必須。

本 workflow は from: ${{ secrets.SMTP_FROM }}シークレット)のため値を確認できません。マージ前に SMTP_FROM が上記形式かメンテナ確認が必要です(通常の SMTP from アドレスなら有効な email 形式のはずで問題ない可能性が高いですが、表示名のみ等だと v18 で送信失敗します)。加えて reusable workflow(全リポの ML 通知に波及)かつ email 送信は PR イベント実走時のみで CI 検証されない点も要注意。

toshi0806 added a commit that referenced this pull request Jul 4, 2026
Reviewed Renovate #88 / #89:
- dawidd6/action-send-mail v3.12.0 -> v18. Verified across all majors v3..v18:
  the only breaking change affecting our usage is v12's `from` format
  requirement (user@example.com or "Name <user@example.com>"). SMTP_FROM
  produces From: github-notify@smkwlab.net (bare email) -> compliant.
- html-validation Node 20 -> 24. Node 24 is current LTS (since 2025-10) and
  Node 20 is EOL (2026-04); node is only used for htmlhint + a trivial CSS
  brace check, both fine on 24. (The AI reviewer's "24 not LTS" note is stale.)

Consolidated to clear the up-to-date-branch ruleset. Supersedes #88 / #89.

Note: action-send-mail runs only on real PR events (not CI), so v18 email
delivery is confirmed on the next ML notification after the v1 deploy.


Claude-Session: https://claude.ai/code/session_01JPuooHgsrboSEbfJsNf6iG

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
@toshi0806

Copy link
Copy Markdown
Member

Superseded by #91 (SMTP_FROM confirmed bare-email format, v18 compatible). Closing.

@toshi0806 toshi0806 closed this Jul 4, 2026
@toshi0806
toshi0806 deleted the renovate/dawidd6-action-send-mail-18.x branch July 4, 2026 09:43
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.

1 participant