Skip to content

chore(deps): update kesin11/actions-timeline action to v3#3585

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/kesin11-actions-timeline-3.x
Open

chore(deps): update kesin11/actions-timeline action to v3#3585
renovate[bot] wants to merge 1 commit intomainfrom
renovate/kesin11-actions-timeline-3.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jan 28, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
Kesin11/actions-timeline action major v2v3

Release Notes

Kesin11/actions-timeline (Kesin11/actions-timeline)

v3.1

Compare Source

v3.1.0

Compare Source

What's New in v3.1.0

New Feature: Expand Composite Action Steps

Two new inputs have been added to provide deeper visibility into composite actions.

expand-composite-actions

When set to true, composite action steps are expanded in the timeline, showing each internal step individually prefixed with (sub). This makes it easy to see exactly where time is being spent inside a composite action.

Note: This option requires additional API calls to fetch job logs and workflow files, which may slightly increase execution time. Nested local composite actions (uses: ./.github/actions/...) are not expanded.

- uses: Kesin11/actions-timeline@v3
  with:
    expand-composite-actions: true
expand-composite-actions-threshold

Controls the duration threshold (in seconds) for expanding composite action steps. Only steps whose total duration meets or exceeds this value will be expanded, keeping the chart readable for fast-running steps. Default is 20 seconds.

- uses: Kesin11/actions-timeline@v3
  with:
    expand-composite-actions: true
    expand-composite-actions-threshold: 10  # Expand steps that take 10s or more
Try it out

You can quickly verify the output using the CLI:

deno run -A cli.ts --token "$(gh auth token)" \
  --expand-composite-actions true \
  --expand-composite-actions-threshold=1 \
  https://github.com/Kesin11/actions-timeline/actions/runs/24601385050 \
  -o actions_timeline.md

The generated actions_timeline.md will contain a Mermaid gantt chart like this - composite action steps such as denoland/setup-deno@v1 and actions/setup-node@v6 are shown as (sub) entries alongside the parent step bar:

Example output
```mermaid
gantt
title CI
...
  Run ./.github/actions/setup-deno-with-cache (3s) :job0-3, after job0-2, 3s
  (sub) denoland/setup-deno@v1 (1s)              :job0-4, after job0-2, 1.847s
  (sub) actions/setup-node@v6 (0s)               :job0-5, after job0-4, 0.155s
  (sub) Environment details (0s)                 :job0-6, after job0-5, 0s
...
```

Changes

Features

Fixes

Dependencies

31 changes

v3

Compare Source

v3.0

Compare Source

v3.0.0

Compare Source

Changes
BREAKING CHANGES
Fixes

v2.2.6

Compare Source

Changes
Dependencies
22 changes
Documentation

v2.2.5

Compare Source

Changes

Fixes

Dependencies

25 changes

Internal improvement

v2.2.4

Compare Source

Changes

Fixes

Dependencies

29 changes

v2.2.3

Compare Source

Changes
Fixes
Dependencies

v2.2.2

Compare Source

Changes
Fixes
Dependencies
20 changes
Documentation

v2.2.1

Compare Source

Changes

Fixes

Dependencies

13 changes

Internal improvement

v2.2.0

Compare Source

Changes

Features

v2.2

Compare Source

v2.1.2

Compare Source

Changes

Dependencies

18 changes

v2.1.1

Compare Source

Changes

Dependencies

23 changes

Internal improvement

v2.1.0

Compare Source

Release actions-timeline CLI tool 🎉
You can use it with deno run command.

deno run --allow-net --allow-write \
  https://raw.githubusercontent.com/Kesin11/actions-timeline/main/cli.ts \
  https://github.com/Kesin11/actions-timeline/actions/runs/8021493760/attempts/1 \
  -t $(gh auth token) \
  -o output.md

# Fetch latest attempt if ommit attempts
deno run --allow-net --allow-write \
  https://raw.githubusercontent.com/Kesin11/actions-timeline/main/cli.ts \
  https://github.com/Kesin11/actions-timeline/actions/runs/8021493760/ \
  -t $(gh auth token) \
  -o output.md

# GHES
deno run --allow-net --allow-write \
  https://raw.githubusercontent.com/Kesin11/actions-timeline/main/cli.ts \
  https://YOUR_ENTERPRISE_HOST/OWNER/REPO/actions/runs/RUN_ID/attempts/1 \
  -t $(gh auth token -h YOUR_ENTERPRISE_HOST) \
  -o output.md

cli.ts just outputs the markdown to file or STDOUT, so you have to use other tools to visualize mermaid diagrams.

Changes

Features

Dependencies

6 changes

v2.1

Compare Source

v2.0.3

Compare Source

Changes

Fixes

Dependencies

15 changes

Documentation

v2.0.2

Compare Source

Changes

Fixes

Dependencies

19 changes

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.

@renovate renovate Bot added the renovate label Jan 28, 2026
@renovate renovate Bot requested a review from a team as a code owner January 28, 2026 18:38
@renovate renovate Bot requested review from chihiro-adachi and shabaraba and removed request for a team January 28, 2026 18:39
@renovate renovate Bot added the renovate label Jan 28, 2026
@renovate renovate Bot force-pushed the renovate/kesin11-actions-timeline-3.x branch from a37b82a to 99668ad Compare February 2, 2026 21:42
@renovate renovate Bot force-pushed the renovate/kesin11-actions-timeline-3.x branch from 99668ad to 98d9f0c Compare February 12, 2026 18:17
@renovate renovate Bot force-pushed the renovate/kesin11-actions-timeline-3.x branch from 98d9f0c to 56435ed Compare March 5, 2026 10:46
@renovate renovate Bot force-pushed the renovate/kesin11-actions-timeline-3.x branch from 56435ed to 69ef83b Compare March 30, 2026 04:17
@renovate renovate Bot force-pushed the renovate/kesin11-actions-timeline-3.x branch 2 times, most recently from 8c4ee39 to e813ef5 Compare April 15, 2026 10:06
@renovate renovate Bot force-pushed the renovate/kesin11-actions-timeline-3.x branch from e813ef5 to ab727e5 Compare April 18, 2026 09:43
@renovate renovate Bot force-pushed the renovate/kesin11-actions-timeline-3.x branch from ab727e5 to 07f4f84 Compare April 21, 2026 21:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants