Skip to content

ci: bump Homebrew/actions/setup-homebrew from 6eaeff80e7e5c43087c0e5eb5aa82120399e9c91 to f8d4222eb633e65c2a0157383cf80861fc7fae7f - #25

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/Homebrew/actions/setup-homebrew-f8d4222eb633e65c2a0157383cf80861fc7fae7f
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/Homebrew/actions/setup-homebrew-f8d4222eb633e65c2a0157383cf80861fc7fae7f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps Homebrew/actions/setup-homebrew from 6eaeff80e7e5c43087c0e5eb5aa82120399e9c91 to f8d4222eb633e65c2a0157383cf80861fc7fae7f.

Changelog

Sourced from Homebrew/actions/setup-homebrew's changelog.

import assert from "node:assert/strict"; import { execFileSync, spawnSync } from "node:child_process"; import { appendFileSync, existsSync, mkdtempSync, readFileSync, rmSync, writeFileSync, } from "node:fs"; import { tmpdir } from "node:os"; import { join } from "node:path"; import { fileURLToPath } from "node:url"; import test from "node:test"; import * as yaml from "js-yaml";

type ActionStep = { uses?: string; };

type ActionMetadata = { runs?: { steps?: ActionStep[]; }; };

type WorkflowMetadata = { jobs?: Record<string, { steps?: ActionStep[] }>; };

const REPOSITORY_ROOT = fileURLToPath(new URL(".", import.meta.url)); const PREPARE_RELEASE = fileURLToPath( new URL("./.github/scripts/prepare-release.sh", import.meta.url), );

function git(repository: string, ...arguments_: string[]): string { return execFileSync("git", ["-C", repository, ...arguments_], { encoding: "utf8", }).trim(); }

function repository(): string { const path = mkdtempSync(join(tmpdir(), "homebrew-actions-release-")); git(path, "init", "--initial-branch=main"); git(path, "config", "user.email", "test@example.com"); git(path, "config", "user.name", "Release Test"); git(path, "config", "commit.gpgsign", "false"); git(path, "config", "tag.gpgsign", "false"); return path; }

... (truncated)

Commits
  • f8d4222 Merge pull request #922 from Homebrew/dependabot/npm_and_yarn/npm-1a82b195b5
  • 8939750 Merge pull request #923 from Homebrew/dependabot/github_actions/github-action...
  • 588daa1 build(deps): bump the github-actions group across 1 directory with 2 updates
  • d81a489 build(deps): bump the npm group with 3 updates
  • c69e528 Merge pull request #921 from Homebrew/sync-shared-config
  • 3a90248 actionlint.yml: update to match main configuration
  • 3cdb78d Merge pull request #920 from Homebrew/dependabot/github_actions/github-action...
  • 706ff40 Merge pull request #919 from Homebrew/dependabot/npm_and_yarn/npm-5df49fc46c
  • 2f9c8eb build(deps): bump the github-actions group across 1 directory with 3 updates
  • 1e9965c build(deps): bump the npm group with 4 updates
  • Additional commits viewable 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [Homebrew/actions/setup-homebrew](https://github.com/homebrew/actions) from 6eaeff80e7e5c43087c0e5eb5aa82120399e9c91 to f8d4222eb633e65c2a0157383cf80861fc7fae7f.
- [Release notes](https://github.com/homebrew/actions/releases)
- [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts)
- [Commits](Homebrew/actions@6eaeff8...f8d4222)

---
updated-dependencies:
- dependency-name: Homebrew/actions/setup-homebrew
  dependency-version: f8d4222eb633e65c2a0157383cf80861fc7fae7f
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #26.

@dependabot dependabot Bot closed this Sep 21, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/Homebrew/actions/setup-homebrew-f8d4222eb633e65c2a0157383cf80861fc7fae7f branch September 21, 2026 06: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