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
126 changes: 18 additions & 108 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
version: 2
updates:
# `/test/cargo-fuzz` is deliberately absent. The fuzz crates reach the root
# workspace through `path` dependencies, so dependabot resolves that directory to
# the root `Cargo.toml` and proposes edits to it while owning neither the root
# `Cargo.lock` nor the fuzz manifests. Every such PR fails `--locked` and
# duplicates the `/` PR for the same crate. Keeping the fuzz pins equal to the
# root is enforced by `check_fuzz_versions_mirror_root` in `bin/lint-cargo`
# instead, so a semver-incompatible root bump has to update the affected
# `src/*/fuzz/Cargo.toml` by hand in the same PR.
- package-ecosystem: cargo
directories:
- /
- /test/cargo-fuzz
schedule:
interval: weekly
day: sunday
Expand Down Expand Up @@ -82,113 +89,16 @@ updates:
- minor
- patch
- package-ecosystem: docker
directory: /console
schedule:
interval: weekly
day: sunday
time: "22:00"
# TODO: Add cooldown when https://github.com/dependabot/dependabot-core/issues/14044 is fixed
open-pull-requests-limit: 50
labels: [A-dependencies]
groups:
simple:
applies-to: version-updates
update-types:
- minor
- patch
- package-ecosystem: docker
directory: /console/misc/docker
directory: /misc/images/materialized-base
schedule:
interval: weekly
day: sunday
time: "22:00"
# TODO: Add cooldown when https://github.com/dependabot/dependabot-core/issues/14044 is fixed
open-pull-requests-limit: 50
labels: [A-dependencies]
groups:
simple:
applies-to: version-updates
update-types:
- minor
- patch
- package-ecosystem: docker
directory: /misc/images/debian-base
schedule:
interval: weekly
day: sunday
time: "22:00"
# TODO: Add cooldown when https://github.com/dependabot/dependabot-core/issues/14044 is fixed
open-pull-requests-limit: 50
labels: [A-dependencies]
groups:
simple:
applies-to: version-updates
update-types:
- minor
- patch
- package-ecosystem: docker
directory: /misc/images/openssh-static
schedule:
interval: weekly
day: sunday
time: "22:00"
# TODO: Add cooldown when https://github.com/dependabot/dependabot-core/issues/14044 is fixed
open-pull-requests-limit: 50
labels: [A-dependencies]
groups:
simple:
applies-to: version-updates
update-types:
- minor
- patch
- package-ecosystem: docker
directory: /misc/images/tini-static
schedule:
interval: weekly
day: sunday
time: "22:00"
# TODO: Add cooldown when https://github.com/dependabot/dependabot-core/issues/14044 is fixed
open-pull-requests-limit: 50
labels: [A-dependencies]
groups:
simple:
applies-to: version-updates
update-types:
- minor
- patch
- package-ecosystem: docker
directory: /misc/images/distroless-prod-base
schedule:
interval: weekly
day: sunday
time: "22:00"
# TODO: Add cooldown when https://github.com/dependabot/dependabot-core/issues/14044 is fixed
open-pull-requests-limit: 50
labels: [A-dependencies]
groups:
simple:
applies-to: version-updates
update-types:
- minor
- patch
- package-ecosystem: docker
directory: /ci/builder
schedule:
interval: weekly
day: sunday
time: "22:00"
# TODO: Add cooldown when https://github.com/dependabot/dependabot-core/issues/14044 is fixed
open-pull-requests-limit: 50
labels: [A-dependencies]
groups:
simple:
applies-to: version-updates
update-types:
- minor
- patch
- package-ecosystem: docker
directory: /test
directories:
- /console
- /console/misc/docker
- /misc/images/materialized-base
- /misc/images/debian-base
- /misc/images/openssh-static
- /misc/images/tini-static
- /misc/images/distroless-prod-base
- /ci/builder
- /test
schedule:
interval: weekly
day: sunday
Expand Down
2 changes: 1 addition & 1 deletion console/misc/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0.

FROM node:20-alpine AS builder
FROM node:20-alpine@sha256:fb4cd12c85ee03686f6af5362a0b0d56d50c58a04632e6c0fb8363f609372293 AS builder

WORKDIR /app

Expand Down
Loading