Skip to content

deps(dev): bump Homebrew/actions/setup-homebrew from 41775cf0c82ef066f1eb39cea1bd74697ca5b735 to 18fcb8e3e06b4247c676c506750dc95ea7226479#3809

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

deps(dev): bump Homebrew/actions/setup-homebrew from 41775cf0c82ef066f1eb39cea1bd74697ca5b735 to 18fcb8e3e06b4247c676c506750dc95ea7226479#3809
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/Homebrew/actions/setup-homebrew-18fcb8e3e06b4247c676c506750dc95ea7226479

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 12, 2026

Copy link
Copy Markdown
Contributor

Bumps Homebrew/actions/setup-homebrew from 41775cf0c82ef066f1eb39cea1bd74697ca5b735 to 18fcb8e3e06b4247c676c506750dc95ea7226479.

Changelog

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

import assert from "node:assert/strict"; import { execFileSync, spawnSync } from "node:child_process"; import { appendFileSync, 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[]; }; };

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; }

function commit(repository: string, message: string, date: string): string { appendFileSync(join(repository, "state.txt"), ${message}\n); git(repository, "add", "state.txt"); execFileSync("git", ["-C", repository, "commit", "-m", message], {

... (truncated)

Commits
  • 18fcb8e Merge pull request #888 from Homebrew/sync-shared-config
  • b8f24e2 actionlint.yml: update to match main configuration
  • 2825979 Merge pull request #887 from Homebrew/pin-homebrew-actions-2026.07.10.1
  • 870b33b release: ignore README changes when checking action pins
  • 7804f67 setup-homebrew: configure Linux sandboxes
  • 105d87e workflows: pin Homebrew/actions to 2026.07.10.1
  • 3a8c4ed Merge pull request #886 from Homebrew/repin-internal-actions
  • 0107867 release: repin internal actions to 2026.07.10.1
  • 1f8e202 Merge pull request #883 from Homebrew/calver-releases
  • 3a1c7bf release: document minimum age requirement for scheduled releases
  • 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 41775cf0c82ef066f1eb39cea1bd74697ca5b735 to 18fcb8e3e06b4247c676c506750dc95ea7226479.
- [Release notes](https://github.com/homebrew/actions/releases)
- [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts)
- [Commits](Homebrew/actions@41775cf...18fcb8e)

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

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 Jul 12, 2026
@dependabot dependabot Bot requested a review from a team as a code owner July 12, 2026 19:02
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 12, 2026
@dependabot dependabot Bot temporarily deployed to AcceptanceTests July 12, 2026 19:02 Inactive
@dependabot dependabot Bot temporarily deployed to AcceptanceTests July 12, 2026 19:02 Inactive
@dependabot dependabot Bot temporarily deployed to AcceptanceTests July 12, 2026 19:02 Inactive
@dependabot dependabot Bot temporarily deployed to AcceptanceTests July 12, 2026 19:02 Inactive
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