Skip to content

Bump goreleaser/goreleaser-action from 6 to 7 - #10

Closed
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/github_actions/goreleaser/goreleaser-action-7
Closed

Bump goreleaser/goreleaser-action from 6 to 7#10
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/github_actions/goreleaser/goreleaser-action-7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 5, 2026

Copy link
Copy Markdown
Contributor

Bumps goreleaser/goreleaser-action from 6 to 7.

Release notes

Sourced from goreleaser/goreleaser-action's releases.

v7.0.0

What's Changed

Full Changelog: goreleaser/goreleaser-action@v6...v7.0.0

v6.4.0

What's Changed

New Contributors

Full Changelog: goreleaser/goreleaser-action@v6.3.0...v6.4.0

v6.3.0

Full Changelog: goreleaser/goreleaser-action@v6.2.1...v6.3.0

v6.2.1

What's Changed

This version of the actions adds support for GoReleaser Pro v2.7.0 versioning (which dropped the -pro suffix). Older versions should work fine.

[!WARNING] This version is required for GoReleaser Pro v2.7.0+. Read more here.

Full Changelog: goreleaser/goreleaser-action@v6.2.0...v6.2.1

... (truncated)

Commits
  • ec59f47 fix: yargs usage
  • 752dede fix: gitignore
  • 1881ae0 ci: update dependabot settings
  • fdc5e66 chore: gitignore provenance.json
  • 51b5b35 chore(deps): bump semver from 7.7.3 to 7.7.4 in the npm group (#539)
  • 4247c53 ci(deps): bump docker/setup-buildx-action in the actions group (#538)
  • c169bfd chore(deps): bump @​actions/http-client from 3.0.2 to 4.0.0 in the npm group (...
  • 902ab4a chore(deps): bump the npm group across 1 directory with 4 updates (#536)
  • c59a691 chore: gitignore
  • 56cc8b2 ci: add job to automate dependabot pre-checkin/vendor
  • Additional commits viewable in compare view

Dependabot compatibility score

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)

jeremy and others added 2 commits March 4, 2026 17:55
* Rename module to github.com/basecamp/hey-cli

Enables `go install github.com/basecamp/hey-cli/cmd/hey@latest`.

* Add build-time version injection and CLI surface support

- internal/version: build-time Version/Commit/Date via ldflags
- root.go: --version flag, hidden --agent flag for JSON CLI surface
- client.go: User-Agent header from version.UserAgent()

* Overhaul Makefile for full build, test, and release lifecycle

Adds: build-pgo, fmt-check, vet, lint, tidy-check, race-test, vuln,
secrets, replace-check, check (CI gate), security, release-check,
bench/bench-cpu/bench-mem/bench-save/bench-compare, collect-profile,
check-surface, check-surface-compat, tools. Includes check-toolchain
guard for mise-managed Go installations.

* Add GoReleaser configuration and release scripts

GoReleaser: cross-platform builds (darwin/linux/windows/freebsd/openbsd),
PGO via -pgo=auto, cosign keyless signing, conditional macOS notarization,
Homebrew cask, Scoop, nfpm deb/rpm packaging.

Scripts: release.sh (preflight + tag), publish-aur.sh (source-based AUR),
install.sh (curl installer with checksum + cosign verification),
collect-profile.sh (PGO from benchmarks), check-cli-surface.sh and
check-cli-surface-diff.sh (surface snapshot + breaking change detection),
sync-skills.sh (skill distribution to basecamp/skills).

* Add CI workflows and repository configuration

Workflows: test.yml (unit tests, lint, govulncheck, race detector),
security.yml (gitleaks, Trivy, gosec, CodeQL, dependency review),
release.yml (PGO, AI changelog, cosign, notarization, surface compat,
AUR, skills sync), ai-labeler.yml (PR classification + breaking change
detection), dependabot-auto-merge.yml.

Config: .golangci.yml, .gitleaks.toml, .github/dependabot.yml,
.github/release.yml (changelog categories), CodeQL config, AI prompts.

* Fix lint issues in new code

- Suppress unused MarkHidden/Encode return values
- Use _ for unused agentHelpFunc args parameter
- Exclude internal/version/ from revive var-naming

* Fix all lint issues for clean golangci-lint gate

- errorlint: wrap errors with %w instead of %v in auth package
- errcheck: check server.Shutdown, type assertions, file cleanup returns
- gosec: suppress false positives (G117 token fields, G115 fd cast,
  G204 browser/editor launch, G703 internal paths)
- govet: eliminate variable shadowing in auth, client, config, editor,
  recordings
- noctx: use NewRequestWithContext in client and TUI image fetcher,
  CommandContext in editor
- nilerr: document intentional nil returns in auth status and raw JSON
- prealloc: preallocate slices in entry parser
- predeclared: rename shadowed `max` parameter
- unused: remove dead limitJSONArray function and kittyImage type
- exhaustive: annotate intentional partial switches
- revive: add justification comments for blank image decoder imports
- staticcheck: convert if-else chain to tagged switch in findImages
- unparam: remove unused configDir parameter from migrateOldCredentials

* Allow dependency-review to soft-fail without GHAS

The dependency-review action requires GitHub Advanced Security
(dependency graph) which may not be enabled on private repos.
Use continue-on-error so it doesn't block PRs.

* Address PR review feedback

- tidy-check: use trap for reliable cleanup on failure/interrupt
- check-surface-compat: fail when baseline build fails instead of
  silently skipping
- agentHelpFunc: include inherited flags via InheritedFlags() so
  persistent flags appear in subcommand surface snapshots
- install.sh: fail fast on missing checksum instead of warning
- install.sh: fail on cosign verification failure with
  HEY_INSECURE_SKIP_COSIGN bypass

* Move continue-on-error to step level for dependency-review

Job-level continue-on-error makes the workflow pass but the check
run still reports failure. Step-level continue-on-error makes the
job itself report success.

* Address second round of PR review feedback

- agentHelpFunc: also visit PersistentFlags() so root-level persistent
  flags appear in the surface snapshot
- publish-aur.sh: validate required env vars upfront, fix header comment
- install.sh: tighten cosign certificate-identity-regexp to match only
  the release workflow

* Fix bot name in publish-aur.sh to cli-release-bot

* Address third round of PR review feedback

- install.sh: use find to locate binary in extracted archive, handles
  both flat and nested archive layouts
- test.yml: use go-version-file for security job to match other jobs
- check-cli-surface-diff.sh: add usage check for missing arguments
Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 6 to 7.
- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)
- [Commits](goreleaser/goreleaser-action@v6...v7)

---
updated-dependencies:
- dependency-name: goreleaser/goreleaser-action
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Copilot AI review requested due to automatic review settings March 5, 2026 01:56
@dependabot
dependabot Bot removed the request for review from Copilot March 5, 2026 01:56
@github-actions github-actions Bot added the enhancement New feature or request label Mar 5, 2026
@dependabot @github

dependabot Bot commented on behalf of github Mar 5, 2026

Copy link
Copy Markdown
Contributor Author

Looks like goreleaser/goreleaser-action is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Mar 5, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/goreleaser/goreleaser-action-7 branch March 5, 2026 08:53
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.

1 participant