Skip to content

chore(deps): bump the all group with 4 updates#13

Merged
release-dispatch-app[bot] merged 1 commit into
mainfrom
dependabot/github_actions/all-0d1ddb49ba
Jun 21, 2026
Merged

chore(deps): bump the all group with 4 updates#13
release-dispatch-app[bot] merged 1 commit into
mainfrom
dependabot/github_actions/all-0d1ddb49ba

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the all group with 4 updates: goeselt/pedant, goeselt/remark, goeselt/intent and goeselt/dispatch.

Updates goeselt/pedant from 1.2.2 to 1.2.3

Release notes

Sourced from goeselt/pedant's releases.

v1.2.3

What's Changed

Full Changelog: goeselt/pedant@v1.2...v1.2.3

Commits

Updates goeselt/remark from 1.0.3 to 1.0.4

Release notes

Sourced from goeselt/remark's releases.

v1.0.4

What's Changed

Full Changelog: goeselt/remark@v1.0...v1.0.4

Commits

Updates goeselt/intent from 1.1.1 to 1.1.4

Release notes

Sourced from goeselt/intent's releases.

v1.1.4

What's Changed

Full Changelog: goeselt/intent@v1.1...v1.1.4

v1.1.3

What's Changed

Full Changelog: goeselt/intent@v1.1...v1.1.3

v1.1.2

Full Changelog: goeselt/intent@v1.1...v1.1.2

Commits
  • 10ce9d9 chore: release v1.1.4 [skip ci]
  • a1174cf fix: separate intent validation into its own workflow (#14)
  • be0949e chore: release v1.1.3 [skip ci]
  • a4f7109 fix: enhance CI workflow with Pedant report and validation steps (#13)
  • 0261106 chore(deps): Bump goeselt/pedant from 1.2.0 to 1.2.1 in the all group (#12)
  • 5778fd6 chore(deps): Bump goeselt/pedant from 1.1.1 to 1.2.0 in the all group (#11)
  • 1b011a2 chore(deps): Bump the all group with 2 updates (#10)
  • 21b70d0 chore: release v1.1.2 [skip ci]
  • d57cb31 fix: update release workflow to use new scribe and dispatch versions
  • See full diff in compare view

Updates goeselt/dispatch from 1.2.1 to 1.2.3

Release notes

Sourced from goeselt/dispatch's releases.

v1.2.3

What's Changed

Full Changelog: goeselt/dispatch@v1.2...v1.2.3

v1.2.2

What's Changed

Full Changelog: goeselt/dispatch@v1.2...v1.2.2

Changelog

Sourced from goeselt/dispatch's changelog.

'use strict'

const fs = require('node:fs') const os = require('node:os') const path = require('node:path') const test = require('node:test') const assert = require('node:assert/strict') const { checkReleaseAuth, createRelease, createTag, fetchTag, guardReleaseContext, guardReleaseHead, isMissingReleaseError, parseAssets, parseBool, parseMakeLatest, releaseCreateLatestArgs, runRelease, } = require('./release.js')

function makeExec(responses = {}) { const calls = [] const optionsByCall = [] const exec = (name, args, options = {}) => { const call = [name, ...args] calls.push(call) optionsByCall.push({ call, options }) const key = [name, ...args].join('\x00') const response = responses[key] ?? { status: 0, stdout: '', stderr: '' } if (response.status && !options.allowFailure) { throw new Error(response.stderr || response.stdout || 'command failed') } return { status: response.status ?? 0, stdout: response.stdout ?? '', stderr: response.stderr ?? '' } } exec.calls = calls exec.called = (...parts) => calls.some((call) => call.join('\x00') === parts.join('\x00')) exec.optionsFor = (...parts) => optionsByCall.find((entry) => entry.call.join('\x00') === parts.join('\x00'))?.options || {} return exec }

function inputs(overrides = {}) { return { releaseTag: 'v1.2.3', createTag: true, createRelease: true, allowNonDefaultBranch: false, makeLatest: 'default-branch',

... (truncated)

Commits
  • 537bfa0 chore: release v1.2.3 [skip ci]
  • da8177a fix: add intent workflow for pull request validation (#18)
  • 1925ee9 chore: release v1.2.2 [skip ci]
  • 902fdc2 fix: add integration guide with usage patterns and examples (#17)
  • 031c016 chore(deps): Bump goeselt/pedant from 1.2.0 to 1.2.1 in the all group (#16)
  • 8c82a11 chore(deps): Bump goeselt/pedant from 1.1.1 to 1.2.0 in the all group (#15)
  • b323a51 chore(deps): Bump the all group with 2 updates (#14)
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 4 updates: [goeselt/pedant](https://github.com/goeselt/pedant), [goeselt/remark](https://github.com/goeselt/remark), [goeselt/intent](https://github.com/goeselt/intent) and [goeselt/dispatch](https://github.com/goeselt/dispatch).


Updates `goeselt/pedant` from 1.2.2 to 1.2.3
- [Release notes](https://github.com/goeselt/pedant/releases)
- [Commits](goeselt/pedant@a62f5be...b8e404a)

Updates `goeselt/remark` from 1.0.3 to 1.0.4
- [Release notes](https://github.com/goeselt/remark/releases)
- [Commits](goeselt/remark@b5a3f7c...7b12cbf)

Updates `goeselt/intent` from 1.1.1 to 1.1.4
- [Release notes](https://github.com/goeselt/intent/releases)
- [Commits](goeselt/intent@v1.1.1...10ce9d9)

Updates `goeselt/dispatch` from 1.2.1 to 1.2.3
- [Release notes](https://github.com/goeselt/dispatch/releases)
- [Changelog](https://github.com/goeselt/dispatch/blob/main/release.test.js)
- [Commits](goeselt/dispatch@c672d1e...537bfa0)

---
updated-dependencies:
- dependency-name: goeselt/pedant
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: goeselt/remark
  dependency-version: 1.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: goeselt/intent
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: goeselt/dispatch
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jun 21, 2026
@github-actions

Copy link
Copy Markdown

Intent Release Check

Note

Intent -- No Release

The PR title chore(deps): bump the all group with 4 updates sets the intended release to a none bump.

Why: no releasable change (chore, docs, ci, ...).

1 commit analyzed
SHA Subject Bump
cf7d53c chore(deps): bump the all group with 4 updates --

Last updated: 2026-06-21 07:32 UTC - Generated by Intent

@release-dispatch-app
release-dispatch-app Bot enabled auto-merge (squash) June 21, 2026 07:32
@github-actions

Copy link
Copy Markdown

Pedant Summary

  • Status: pass
  • Files checked: 27
  • Tools run: 8
  • Findings: 0

Last updated: 2026-06-21 07:33 UTC - Generated by Remark

@release-dispatch-app
release-dispatch-app Bot merged commit 75467f5 into main Jun 21, 2026
3 checks passed
@release-dispatch-app
release-dispatch-app Bot deleted the dependabot/github_actions/all-0d1ddb49ba branch June 21, 2026 07:33
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants