Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build-cuvs-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ on:
required: true
type: boolean

env:
# prevent buildx from creating arch-specific manifest lists...
# we want single images, that are later referenced together in a multiarch manifest
#
# ref: https://github.com/docker/build-push-action/issues/1339
BUILDX_NO_DEFAULT_ATTESTATIONS: 1

jobs:
build:
strategy:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-rapids-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ on:
required: true
type: string

env:
# prevent buildx from creating arch-specific manifest lists...
# we want single images, that are later referenced together in a multiarch manifest
BUILDX_NO_DEFAULT_ATTESTATIONS: 1

jobs:
build:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.3
rev: v0.14.7
hooks:
- id: ruff
args: ["--config", "pyproject.toml"]
Expand Down
Loading