Skip to content

Commit ec6f9a5

Browse files
committed
Auto merge of rust-lang#155709 - tgross35:compiler-builtins-sync-2026-04-22, r=tgross35
compiler-builtins subtree update Subtree update of `compiler-builtins` to rust-lang/compiler-builtins@4d3ab86. Created using https://github.com/rust-lang/josh-sync. Closes: rust-lang#155653
2 parents cf79d03 + 0a57857 commit ec6f9a5

205 files changed

Lines changed: 9224 additions & 5001 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

library/compiler-builtins/.editorconfig

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# EditorConfig helps developers define and maintain consistent
2-
# coding styles between different editors and IDEs
31
# editorconfig.org
42

53
root = true
@@ -12,5 +10,5 @@ insert_final_newline = true
1210
indent_style = space
1311
indent_size = 4
1412

15-
[*.yml]
13+
[*.{yaml,yml}]
1614
indent_size = 2
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
$schema: "https://docs.renovatebot.com/renovate-schema.json",
3+
extends: [
4+
"config:recommended",
5+
":maintainLockFilesMonthly",
6+
"helpers:pinGitHubActionDigestsToSemver"
7+
],
8+
packageRules: [
9+
{
10+
matchCategories: [
11+
"rust"
12+
],
13+
matchJsonata: [
14+
"isBreaking != true"
15+
],
16+
// Disable non-breaking change updates because they
17+
// are updated periodically with lockfile maintainance.
18+
enabled: false,
19+
},
20+
{
21+
matchManagers: [
22+
"github-actions"
23+
],
24+
// Every month
25+
schedule: "* 0 1 * *",
26+
groupName: "Github Actions",
27+
}
28+
],
29+
// Receive any update that fixes security vulnerabilities.
30+
// We need this because we disabled "patch" updates for Rust.
31+
// Note: You need to enable "Dependabot alerts" in "Code security" GitHub
32+
// Settings to receive security updates.
33+
// See https://docs.renovatebot.com/configuration-options/#vulnerabilityalerts
34+
vulnerabilityAlerts: {
35+
enabled: true,
36+
},
37+
}

0 commit comments

Comments
 (0)