Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 27, 2025

This PR contains the following updates:

Package Type Update Change
Songmu/ecschedule action minor v0.15.3v0.17.2
actions/checkout action patch v5.0.0v5.0.1
actions/create-github-app-token action minor v2.1.4v2.2.1
actions/setup-go action minor v6.0.0v6.2.0
aws-actions/configure-aws-credentials action minor v5.0.0v5.1.1
peter-evans/create-pull-request action patch v7.0.8v7.0.11
suzuki-shunsuke/commit-action action minor v0.0.10v0.1.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

Songmu/ecschedule (Songmu/ecschedule)

v0.17.2

Compare Source

v0.17.1

Compare Source

v0.17.0

Compare Source

  • build(deps): bump Songmu/tagpr from 1.8.4 to 1.9.0 by @​dependabot[bot] in #​202
  • build(deps): bump github.com/aws/aws-sdk-go-v2/service/ecs from 1.67.2 to 1.67.4 by @​dependabot[bot] in #​207
  • build(deps): bump github.com/aws/aws-sdk-go-v2/service/sts from 1.39.1 to 1.40.2 by @​dependabot[bot] in #​203
  • build(deps): bump github.com/aws/aws-sdk-go-v2/service/resourcegroups from 1.33.12 to 1.33.14 by @​dependabot[bot] in #​204
  • build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.17 to 1.31.20 by @​dependabot[bot] in #​206
  • build(deps): bump github.com/aws/aws-sdk-go-v2/service/cloudwatchevents from 1.32.11 to 1.32.13 by @​dependabot[bot] in #​205
  • Add parallel execution support to diff command by @​lamanotrama in #​208

v0.16.0

Compare Source

actions/checkout (actions/checkout)

v5.0.1

Compare Source

What's Changed

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

actions/create-github-app-token (actions/create-github-app-token)

v2.2.1

Compare Source

Bug Fixes
  • deps: bump the production-dependencies group with 2 updates (#​311) (b212e6a)

v2.2.0

Compare Source

Bug Fixes
Features
actions/setup-go (actions/setup-go)

v6.2.0

Compare Source

v6.1.0

Compare Source

What's Changed

Enhancements
Dependency updates

New Contributors

Full Changelog: actions/setup-go@v6...v6.1.0

aws-actions/configure-aws-credentials (aws-actions/configure-aws-credentials)

v5.1.1

Compare Source

Miscellaneous Chores
  • release 5.1.1 (56d6a58)
  • various dependency updates

v5.1.0

Compare Source

Features
Bug Fixes
peter-evans/create-pull-request (peter-evans/create-pull-request)

v7.0.11: Create Pull Request v7.0.11

Compare Source

What's Changed

Full Changelog: peter-evans/create-pull-request@v7.0.10...v7.0.11

v7.0.10: Create Pull Request v7.0.10

Compare Source

⚙️ Fixes an issue where updating a pull request failed when targeting a forked repository with the same owner as its parent.

What's Changed
New Contributors

Full Changelog: peter-evans/create-pull-request@v7.0.9...v7.0.10

v7.0.9: Create Pull Request v7.0.9

Compare Source

⚙️ Fixes an incompatibility with the recently released actions/checkout@v6.

What's Changed

New Contributors

Full Changelog: peter-evans/create-pull-request@v7.0.8...v7.0.9

suzuki-shunsuke/commit-action (suzuki-shunsuke/commit-action)

v0.1.0

Compare Source

Issues | Pull Requests | suzuki-shunsuke/commit-action@v0.0.14...v0.1.0 | Base revision

⚠️ Breaking Changes

#​257 The way to list committed files is changed.

Before:

If files is set, git ls-files isn't run.

After:

If files is set, it's used as arguments of git ls-files. If list_files_by_git is set to false, the behaviour is kept.

Features

#​257 Allowing directories to be used in files.
Previously, the action failed if directories were used in files.

Error: EISDIR: illegal operation on a directory, read

#​249 Add Outputs to action.yaml @​smashedr

Added the outputs to the action.yaml for schema validation.

idea64-20260105-122734426

Security

#​256 Mask a GitHub Access Token

🐛 Bug Fixes

#​251 suzuki-shunsuke/commit-ts#174 Preserve executable file mode

Others

#​251 suzuki-shunsuke/commit-ts#179 Add info logs

v0.0.14

Compare Source

Issues | Pull Requests | suzuki-shunsuke/commit-action@v0.0.13...v0.0.14 | Base revision

🐛 Bug Fixes

#​233 Fix a bug that the action fails without inputs github_token or the pair of app_id and app_private_key
#​232 Fix a bug throwed error isn't cached

Others

#​233 Add the integration test

v0.0.13

Compare Source

Issues | Pull Requests | suzuki-shunsuke/commit-action@v0.0.12...v0.0.13 | Base revision

Fixes

#​226 Skip revoking access tokens if they has already expired

Refactoring

#​227 #​229 Use commit-ts

v0.0.12

Compare Source

Issues | Pull Requests | suzuki-shunsuke/commit-action@v0.0.11...v0.0.12 | Base revision

Performance Improvement

#​224 Change the action from the composite action to JavaScript Action

v0.0.11

Compare Source

Issues | Pull Requests | suzuki-shunsuke/commit-action@v0.0.10...v0.0.11 | Base revision

Features

#​204 Add fail_on_self_push input and self_push output to control self-push behavior @​haya14busa

self-push means pushing a commit to the same repository and branch where the workflow is run.

Overview
  • Make self-push behavior configurable and observable without failing by default.
  • Preserve current default: fail when pushing to the same repo/branch.
Motivation
  • Some workflows want to continue after self-push and branch via outputs rather than fail.
  • Avoid unnecessary failures while still preventing loops when desired.
Changes
  • New input fail_on_self_push (default: true) to control failure on self-push.
  • New output self_push indicates a push to the same repo/branch as the current run.
Usage Example
- uses: suzuki-shunsuke/commit-action@latest
  id: commit
  with:
    # Continue even if pushing to the same repo/branch
    fail_on_self_push: false

- if: steps.commit.outputs.self_push == 'true'
  run: echo "Self-push occurred; follow-up logic here"
Backward Compatibility
  • Default behavior unchanged: fails on self-push when fail_on_self_push is not provided or is true.
  • No breaking changes to existing inputs/outputs.

Configuration

📅 Schedule: 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.

👻 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 changed the title Update suzuki-shunsuke/commit-action action to v0.0.11 Update all dependencies on GitHub Actions Oct 6, 2025
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch 3 times, most recently from ab1ce46 to d6cb344 Compare October 13, 2025 08:32
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch from d6cb344 to 38a3266 Compare October 13, 2025 08:33
@renovate renovate bot changed the title Update all dependencies on GitHub Actions chore(deps): update all dependencies on github actions Oct 18, 2025
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch 3 times, most recently from 4f95eee to 5030a78 Compare November 7, 2025 09:41
@renovate renovate bot changed the title chore(deps): update all dependencies on github actions Update all dependencies on GitHub Actions Nov 8, 2025
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch from 5030a78 to c0e22b9 Compare November 10, 2025 13:53
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch 7 times, most recently from 59dcda9 to 21d49f7 Compare November 24, 2025 09:58
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch from 21d49f7 to 4e2d07a Compare November 24, 2025 21:45
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch 3 times, most recently from 7591710 to 80f1ef1 Compare December 6, 2025 03:48
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch from 80f1ef1 to fcfad34 Compare December 15, 2025 17:40
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch from fcfad34 to eac4254 Compare December 31, 2025 16:44
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch from eac4254 to 7ff8dd7 Compare January 9, 2026 13:54
@renovate renovate bot force-pushed the renovate/all-dependencies-on-github-actions branch from 7ff8dd7 to ef79679 Compare January 13, 2026 03:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants