Skip to content

build(deps): bump redhat-actions/buildah-build from 2.13 to 3 in the actions-major group - #4258

Merged
hippietrail merged 1 commit into
masterfrom
dependabot/github_actions/actions-major-c02e4e4ed7
Aug 31, 2026
Merged

build(deps): bump redhat-actions/buildah-build from 2.13 to 3 in the actions-major group#4258
hippietrail merged 1 commit into
masterfrom
dependabot/github_actions/actions-major-c02e4e4ed7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor

Bumps the actions-major group with 1 update: redhat-actions/buildah-build.

Updates redhat-actions/buildah-build from 2.13 to 3

Release notes

Sourced from redhat-actions/buildah-build's releases.

v3.0.0

Breaking Changes

  • Node.js 24 runtime: The action now runs on the Node.js 24 runtime (runs.using: node24). GitHub Actions runners must support this runtime. (#154)
  • Squash defaults to true: The squash input now defaults to true, matching common usage. Set squash: false to preserve intermediate layers. (#161)

New Features

  • Annotations input: Add OCI annotations to images using the new annotations input. Separate multiple annotations by newline. Only supported by OCI images. (#161)
  • Container mode (buildah-image input): Run buildah from a container image instead of the host-installed version. Useful for getting a newer buildah than what the runner provides. For example, buildah-image: quay.io/buildah/stable. (#168)
  • Podman fallback: When buildah is not installed on the runner, the action automatically falls back to using podman build for containerfile builds. Scratch builds still require buildah. (#169)
  • Multiple ports: The port input now accepts multiple ports separated by newline. (#165)
  • Parallel multi-arch builds: When building for multiple architectures, each architecture is now built in parallel for significantly faster builds. (#167)
  • Architecture verification: After each multi-arch build, the action verifies the output image matches the expected architecture, catching misconfigured emulation early. (#166)
  • Image digest output: The digest output now reliably returns the content digest of the built image. (#153, #165)

Bug Fixes

  • Fix empty entrypoint being set when the input is not provided. (#161)
  • Fix containerfile path resolution to check both workspace and context directory. (#165)
  • Fix digest retrieval using buildah images --format {{.Digest}} instead of buildah inspect which returned the wrong type. (#165)

CI & Infrastructure

  • Modernize all CI workflows: upgrade to actions/checkout@v7, actions/setup-node@v7, ubuntu-24.04 runners. (#156)
  • Add workflow permissions, concurrency groups, and path filters. (#156)
  • Remove broken install_latest_buildah.sh script and simplify CI matrices. (#164)
  • Remove defunct CRDA vulnerability scan workflow. (#170)
  • Replace deprecated gaurav-nelson/github-action-markdown-link-check with tcort/github-action-markdown-link-check. (#171)
  • Enable Dependabot for npm and GitHub Actions dependencies. (#156)
  • Add CODEOWNERS, SECURITY.md. (#156)

Dependency Updates

  • Upgrade TypeScript to 6.x. (#163)
  • Upgrade ESLint to 10 with flat config. (#156)
  • Upgrade @actions/core, @actions/exec, @actions/io to latest versions. (#150, #156)
  • Upgrade @types/node to v26. (#159)
  • Upgrade redhat-actions/common to v2. (#158)

Full Changelog: redhat-actions/buildah-build@v2.13...v3.0.0

Changelog

Sourced from redhat-actions/buildah-build's changelog.

buildah-build Changelog

v3.1.0

New Features

  • Sequential multi-arch builds: Add sequential input to run multi-arch builds one at a time instead of in parallel. Parallel remains the default, but sequential mode avoids qemu-related failures with FROM --platform=$(BUILDPLATFORM) stages. #191
  • Disable fuse-overlayfs override: Add disable-fuse-overlayfs input to prevent the action from overriding the storage mount program. The action now auto-detects kernel support for rootless native overlayfs (5.11+) and skips the fuse-overlayfs override when the kernel is new enough. This fixes silent data corruption and performance regressions on ubuntu-24.04 runners. #193

Bug Fixes

  • Fix digest output for non-x86 multi-arch builds: The digest output failed with image not known when the manifest only contained non-amd64 images (e.g. ppc64le, s390x). The action now uses buildah manifest inspect for multi-arch builds, which is architecture-agnostic. #192

CI & Infrastructure

  • Add workflow to rebuild bundle on Dependabot PRs. #180
  • Update CODEOWNERS to use @​redhat-actions/maintainers. Remove repo-level SECURITY.md in favor of org-wide default.

Dependency Updates

  • Bump esbuild from 0.28.1 to 0.28.2. #187
  • Bump typescript-eslint from 8.65.0 to 8.67.0. #185, #188
  • Bump eslint from 10.7.0 to 10.8.1. #178, #184
  • Bump @​types/node from 26.1.1 to 26.2.0. #179, #183
  • Bump undici from 6.27.0 to 6.28.0. #181
  • Bump postcss from 8.5.22 to 8.5.25. #182

v3.0.2

Bug Fixes

  • Fix container mode "image not known" error: Each containerized buildah command ran in a new disposable container with its own storage. Images built by buildah bud were invisible to subsequent buildah tag and buildah images commands. All containerized buildah invocations now pass --root <storageRoot> to share the bind-mounted host storage. #177

CI & Infrastructure

  • Add integration test for buildah-image container mode with multiple tags. #177
  • Consolidate three containerfile build workflows into one (native, containerized, case normalization). #177

v3.0.1

Bug Fixes

  • Fix container mode storage permission error: The buildah-image feature hardcoded the rootful storage path /var/lib/containers/storage, which fails with permission denied on rootless runners. The action now detects the host's actual storage root via podman info at runtime, with a fallback to the previous path. #175

CI & Infrastructure

  • Add unit test suite using vitest and a test job in CI. #175

v3.0.0

Breaking Changes

  • Node.js 24 runtime: The action now runs on the Node.js 24 runtime (runs.using: node24). GitHub Actions runners must support this runtime. #154
  • Squash defaults to true: The squash input now defaults to true, matching common usage. Set squash: false to preserve intermediate layers. #161

New Features

  • Annotations input: Add OCI annotations to images using the new annotations input. Separate multiple annotations by newline. Only supported by OCI images. #161
  • Container mode (buildah-image input): Run buildah from a container image instead of the host-installed version. Useful for getting a newer buildah than what the runner provides. For example, buildah-image: quay.io/buildah/stable. #168
  • Podman fallback: When buildah is not installed on the runner, the action automatically falls back to using podman build for containerfile builds. Scratch builds still require buildah. #169

... (truncated)

Commits
  • 719e3c4 Update CHANGELOG and version for v3.1.0
  • 3aa6b53 Add support for building multi-arch images sequentially (#191)
  • bb79777 Skip fuse-overlayfs override when kernel supports rootless overlayfs (#193)
  • 7b981d9 Fix digest output for multi-arch builds without host architecture (#192)
  • f34ebba Bump esbuild from 0.28.1 to 0.28.2 (#187)
  • 9b8e83b Bump typescript-eslint from 8.66.0 to 8.67.0 (#188)
  • c315bd8 Bump typescript-eslint from 8.65.0 to 8.66.0 (#185)
  • e2590df Bump eslint from 10.8.0 to 10.8.1 (#184)
  • b311a5d Bump @​types/node from 26.1.2 to 26.2.0 (#183)
  • f0f7a33 Bump undici from 6.27.0 to 6.28.0 (#181)
  • 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 <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 actions-major group with 1 update: [redhat-actions/buildah-build](https://github.com/redhat-actions/buildah-build).


Updates `redhat-actions/buildah-build` from 2.13 to 3
- [Release notes](https://github.com/redhat-actions/buildah-build/releases)
- [Changelog](https://github.com/redhat-actions/buildah-build/blob/main/CHANGELOG.md)
- [Commits](redhat-actions/buildah-build@7a95fa7...719e3c4)

---
updated-dependencies:
- dependency-name: redhat-actions/buildah-build
  dependency-version: '3'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 31, 2026
@hippietrail
hippietrail added this pull request to the merge queue Aug 31, 2026
Merged via the queue into master with commit 283cc18 Aug 31, 2026
14 checks passed
@hippietrail
hippietrail deleted the dependabot/github_actions/actions-major-c02e4e4ed7 branch August 31, 2026 05:01
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