[READ-ONLY] Mirror of https://github.com/bombshell-dev/tty. Platform independent 2D layout engine for terminal applications based on Clay
5

Configure Feed

Select the types of activity you want to include in your feed.

build(deps): bump the github-actions group across 1 directory with 4 updates (#100)

Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [CodSpeedHQ/action](https://github.com/codspeedhq/action) and [actions/github-script](https://github.com/actions/github-script).


Updates `actions/checkout` from 6.0.2 to 7.0.0
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6.0.2...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0)

Updates `actions/cache` from 5.0.5 to 6.0.0
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/27d5ce7f107fe9357f9df03efb73ab90386fccae...2c8a9bd7457de244a408f35966fab2fb45fda9c8)

Updates `CodSpeedHQ/action` from 4.17.0 to 4.17.6
- [Release notes](https://github.com/codspeedhq/action/releases)
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codspeedhq/action/compare/9d332c4d90b43981c3e55ae8e38e68709996240f...63f3e98b61959fe67f146a3ff022e4136fe9bb9c)

Updates `actions/github-script` from 7.1.0 to 9.0.0
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/f28e40c7f34bde8b3046d885e986cb6290c5673b...3a2844b7e9c422d3c10d287c895573f7108da1b3)

---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: actions/cache
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: CodSpeedHQ/action
dependency-version: 4.17.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: github-actions
- dependency-name: actions/github-script
dependency-version: 9.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

authored by

dependabot[bot]
dependabot[bot]
and committed by
GitHub
(Jun 23, 2026, 9:16 PM EDT) 83d04751 12944f08

+12 -12
+5 -5
.github/workflows/benchmark.yml
··· 22 22 contents: read # clone repo 23 23 steps: 24 24 - name: Checkout 25 - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 25 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 26 26 with: 27 27 submodules: true 28 28 persist-credentials: false ··· 36 36 run: make 37 37 38 38 - name: Cache dependencies 39 - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 39 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 40 40 id: deno-cache 41 41 with: 42 42 path: node_modules ··· 63 63 64 64 steps: 65 65 - name: Checkout 66 - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 66 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 67 67 68 68 - name: Setup Deno 69 69 uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4 ··· 81 81 name: bench-build 82 82 83 83 - name: Restore dependencies 84 - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 84 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 85 85 id: deno-cache 86 86 with: 87 87 path: node_modules ··· 92 92 run: deno install 93 93 94 94 - name: Run walltime benchmarks 95 - uses: CodSpeedHQ/action@9d332c4d90b43981c3e55ae8e38e68709996240f # v4.17.0 95 + uses: CodSpeedHQ/action@63f3e98b61959fe67f146a3ff022e4136fe9bb9c # v4.17.6 96 96 with: 97 97 mode: walltime 98 98 run: |
+1 -1
.github/workflows/preview.yml
··· 15 15 timeout-minutes: 10 16 16 steps: 17 17 - name: checkout 18 - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 18 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 19 19 with: 20 20 fetch-depth: 0 21 21 submodules: true
+1 -1
.github/workflows/publish.yml
··· 13 13 runs-on: ubuntu-latest 14 14 steps: 15 15 - name: checkout 16 - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 16 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 17 17 with: 18 18 submodules: true 19 19 persist-credentials: false
+2 -2
.github/workflows/size-report.yml
··· 18 18 19 19 steps: 20 20 - name: checkout 21 - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4 21 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4 22 22 with: 23 23 submodules: true 24 24 fetch-depth: 0 ··· 60 60 run: deno run --allow-read /tmp/measure-size.ts > /tmp/base-sizes.json 61 61 62 62 - name: post size report 63 - uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7 63 + uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 64 64 with: 65 65 script: | 66 66 const fs = require('fs');
+3 -3
.github/workflows/verify.yaml
··· 21 21 22 22 steps: 23 23 - name: checkout 24 - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 24 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 25 25 with: 26 26 submodules: true 27 27 persist-credentials: false ··· 63 63 64 64 steps: 65 65 - name: checkout 66 - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 66 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 67 67 with: 68 68 submodules: true 69 69 persist-credentials: false ··· 87 87 runs-on: ubuntu-latest 88 88 steps: 89 89 - name: checkout 90 - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 90 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 91 91 with: 92 92 submodules: true 93 93 persist-credentials: false