Skip to content

chore(deps): bump the github-actions group with 3 updates#43

Merged
alxxjohn merged 1 commit into
mainfrom
dependabot/github_actions/github-actions-519d33dc70
Jul 16, 2026
Merged

chore(deps): bump the github-actions group with 3 updates#43
alxxjohn merged 1 commit into
mainfrom
dependabot/github_actions/github-actions-519d33dc70

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the github-actions group with 3 updates: actions/setup-go, actions/setup-node and Homebrew/actions/setup-homebrew.

Updates actions/setup-go from 6 to 7

Release notes

Sourced from actions/setup-go's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/setup-go@v6...v7.0.0

v6.5.0

What's Changed

Dependency update

New Contributors

Full Changelog: actions/setup-go@v6...v6.5.0

v6.4.0

What's Changed

Enhancement

Dependency update

Documentation update

New Contributors

Full Changelog: actions/setup-go@v6...v6.4.0

v6.3.0

What's Changed

Full Changelog: actions/setup-go@v6...v6.3.0

v6.2.0

What's Changed

... (truncated)

Commits

Updates actions/setup-node from 6.4.0 to 7.0.0

Release notes

Sourced from actions/setup-node's releases.

v7.0.0

What's Changed

Enhancements:

Bug fixes:

Documentation updates:

Dependency update:

New Contributors

Full Changelog: actions/setup-node@v6...v7.0.0

v6.5.0

What's Changed

Full Changelog: actions/setup-node@v6.4.0...v6.5.0

Commits
  • 8207627 Migrate to ESM and upgrade dependencies (#1574)
  • 04be95c Add cache-primary-key and cache-matched-key as outputs (#1577)
  • 7c2c68d docs: Update caching recommendations to mitigate cache poisoning risks (#1567)
  • 6a61c03 Merge pull request #1569 from jasongin/update-actions-cache-5.1.0
  • 30eb73b Resolve high-severity audit issues
  • 4e1a87a Update dist
  • 360237f Strict equality
  • 4f8aac5 Bump @​actions/cache to 5.1.0, log cache write denied
  • f4a67bb Only use mirrorToken in getManifest if it's provided (#1548)
  • 0355742 Remove dummy NODE_AUTH_TOKEN export (#1558)
  • Additional commits viewable in compare view

Updates Homebrew/actions/setup-homebrew from 64bb52ce84da6455bdbd6df88ac86151ba2ff16c to 100978dc923ea73ee9ed454d1d5c4fcf3ee14a9e

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
  • 100978d Merge pull request #889 from Homebrew/sync-shared-config
  • fbb71bb .ruby-version: update to match main configuration
  • 5368cfa .rubocop.yml: update to match main configuration
  • 8952f37 zizmor.yml: update to match main configuration
  • 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
  • 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 <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 github-actions group with 3 updates: [actions/setup-go](https://github.com/actions/setup-go), [actions/setup-node](https://github.com/actions/setup-node) and [Homebrew/actions/setup-homebrew](https://github.com/homebrew/actions).


Updates `actions/setup-go` from 6 to 7
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v6...v7)

Updates `actions/setup-node` from 6.4.0 to 7.0.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@48b55a0...8207627)

Updates `Homebrew/actions/setup-homebrew` from 64bb52ce84da6455bdbd6df88ac86151ba2ff16c to 100978dc923ea73ee9ed454d1d5c4fcf3ee14a9e
- [Release notes](https://github.com/homebrew/actions/releases)
- [Changelog](https://github.com/Homebrew/actions/blob/main/release.test.mts)
- [Commits](Homebrew/actions@64bb52c...100978d)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/setup-node
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: Homebrew/actions/setup-homebrew
  dependency-version: 100978dc923ea73ee9ed454d1d5c4fcf3ee14a9e
  dependency-type: direct:production
  dependency-group: github-actions
...

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 16, 2026
@dependabot
dependabot Bot requested a review from alxxjohn as a code owner July 16, 2026 06:57
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 16, 2026
@alxxjohn
alxxjohn merged commit 1220590 into main Jul 16, 2026
11 checks passed
@dependabot
dependabot Bot deleted the dependabot/github_actions/github-actions-519d33dc70 branch July 16, 2026 13:46
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.

1 participant