Skip to content

Commit a848b2f

Browse files
Merge branch 'main' into dependabot/cargo/bots/finishingbot/quinn-proto-0.11.16
2 parents 7e8228a + 32584d3 commit a848b2f

48 files changed

Lines changed: 383 additions & 1349 deletions

Some content is hidden

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

.claude/worktrees/actions-policy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit e82290be1edf92504522d242cc60ae0183f6b8ad

.editorconfig

Lines changed: 54 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,68 @@
1-
# SPDX-License-Identifier: MPL-2.0
2-
# SPDX-FileCopyrightText: 2025 hyperpolymath
1+
# RSR-template-repo - Editor Configuration
2+
# https://editorconfig.org
33

44
root = true
55

66
[*]
7-
indent_style = space
8-
indent_size = 2
9-
end_of_line = lf
107
charset = utf-8
11-
trim_trailing_whitespace = true
8+
end_of_line = lf
9+
indent_size = 2
10+
indent_style = space
1211
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false
16+
17+
[*.adoc]
18+
trim_trailing_whitespace = false
1319

1420
[*.rs]
1521
indent_size = 4
1622

23+
[*.ex]
24+
indent_size = 2
25+
26+
[*.exs]
27+
indent_size = 2
28+
29+
[*.zig]
30+
indent_size = 4
31+
32+
[*.ada]
33+
indent_size = 3
34+
35+
[*.adb]
36+
indent_size = 3
37+
38+
[*.ads]
39+
indent_size = 3
40+
41+
[*.hs]
42+
indent_size = 2
43+
44+
[*.res]
45+
indent_size = 2
46+
47+
[*.resi]
48+
indent_size = 2
49+
50+
[*.ncl]
51+
indent_size = 2
52+
53+
[*.rkt]
54+
indent_size = 2
55+
1756
[*.scm]
1857
indent_size = 2
1958

20-
[Makefile]
21-
indent_style = tab
59+
[*.nix]
60+
indent_size = 2
2261

23-
[*.md]
24-
trim_trailing_whitespace = false
62+
[Justfile]
63+
indent_style = space
64+
indent_size = 4
65+
66+
[justfile]
67+
indent_style = space
68+
indent_size = 4

.gitattributes

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# SPDX-License-Identifier: MPL-2.0
22
# RSR-compliant .gitattributes
3+
34
* text=auto eol=lf
5+
46
# Source
57
*.rs text eol=lf diff=rust
68
*.ex text eol=lf diff=elixir
@@ -16,23 +18,28 @@
1618
*.scm text eol=lf
1719
*.ncl text eol=lf
1820
*.nix text eol=lf
21+
1922
# Docs
2023
*.md text eol=lf diff=markdown
2124
*.adoc text eol=lf
2225
*.txt text eol=lf
26+
2327
# Data
2428
*.json text eol=lf
2529
*.yaml text eol=lf
2630
*.yml text eol=lf
2731
*.toml text eol=lf
32+
2833
# Config
2934
.gitignore text eol=lf
3035
.gitattributes text eol=lf
3136
justfile text eol=lf
3237
Makefile text eol=lf
3338
Containerfile text eol=lf
39+
3440
# Scripts
3541
*.sh text eol=lf
42+
3643
# Binary
3744
*.png binary
3845
*.jpg binary
@@ -41,6 +48,7 @@ Containerfile text eol=lf
4148
*.woff2 binary
4249
*.zip binary
4350
*.gz binary
51+
4452
# Lock files
4553
Cargo.lock text eol=lf -diff
46-
shared-context/learning/*.jsonl filter=lfs diff=lfs merge=lfs -text
54+
flake.lock text eol=lf -diff

.github/workflows/boj-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ jobs:
1010
timeout-minutes: 10
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
13+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1414
- name: Trigger BoJ Server (Casket/ssg-mcp)
1515
run: |
1616
# Send a secure trigger to boj-server to build this repository
1717
curl -X POST "http://boj-server.local:7700/cartridges/ssg-mcp/invoke" -H "Content-Type: application/json" -d "{\"repo\": \"${{ github.repository }}\", \"branch\": \"${{ github.ref_name }}\", \"engine\": \"casket\\"}"}
1818
continue-on-error: true
1919
permissions:
20+
actions: read
2021
contents: read

.github/workflows/casket-pages.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
workflow_dispatch:
88

99
permissions:
10+
actions: read
1011
contents: read
1112
pages: write
1213
id-token: write
@@ -21,10 +22,10 @@ jobs:
2122
timeout-minutes: 30
2223
steps:
2324
- name: Checkout
24-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
25+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
2526

2627
- name: Checkout casket-ssg
27-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
28+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
2829
with:
2930
repository: hyperpolymath/casket-ssg
3031
path: .casket-ssg

.github/workflows/codeql.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ concurrency:
2020
cancel-in-progress: true
2121

2222
permissions:
23+
actions: read
2324
contents: read
2425

2526
jobs:
@@ -41,15 +42,15 @@ jobs:
4142

4243
steps:
4344
- name: Checkout
44-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
45+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4546

4647
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@7188fc363630916deb702c7fdcf4e481b751f97a # v3
48+
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v3
4849
with:
4950
languages: ${{ matrix.language }}
5051
build-mode: ${{ matrix.build-mode }}
5152

5253
- name: Perform CodeQL Analysis
53-
uses: github/codeql-action/analyze@7188fc363630916deb702c7fdcf4e481b751f97a # v3
54+
uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v3
5455
with:
5556
category: "/language:${{ matrix.language }}"

.github/workflows/dogfood-gate.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
branches: [main, master]
1414

1515
permissions:
16+
actions: read
1617
contents: read
1718

1819
jobs:
@@ -26,7 +27,7 @@ jobs:
2627

2728
steps:
2829
- name: Checkout repository
29-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
30+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3031

3132
- name: Check for A2ML files
3233
id: detect
@@ -88,7 +89,7 @@ jobs:
8889

8990
steps:
9091
- name: Checkout repository
91-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
92+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
9293

9394
- name: Check for K9 files
9495
id: detect
@@ -138,7 +139,7 @@ jobs:
138139

139140
steps:
140141
- name: Checkout repository
141-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
142+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
142143

143144
- name: Scan for invisible characters
144145
id: lint
@@ -203,7 +204,7 @@ jobs:
203204

204205
steps:
205206
- name: Checkout repository
206-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
207+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
207208

208209
- name: Check for Groove manifest
209210
id: groove
@@ -264,7 +265,7 @@ jobs:
264265

265266
steps:
266267
- name: Checkout repository
267-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
268+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
268269

269270
- name: Generate dogfooding scorecard
270271
run: |

.github/workflows/e2e.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ on:
66
pull_request:
77
branches: ['**']
88
permissions:
9+
actions: read
910
contents: read
1011
jobs:
1112
e2e:
1213
name: E2E tests
1314
runs-on: ubuntu-latest
1415
timeout-minutes: 30
1516
steps:
16-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
17+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1718
- name: Install PyYAML (for workflow YAML validation)
1819
run: pip install pyyaml --quiet
1920
- name: Run E2E tests

.github/workflows/governance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ concurrency:
2727
cancel-in-progress: true
2828

2929
permissions:
30+
actions: read
3031
contents: read
3132

3233
jobs:

.github/workflows/hypatia-dispatch-intake.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
- hypatia-general-findings
1212

1313
permissions:
14+
actions: read
1415
contents: read
1516

1617
jobs:
@@ -21,7 +22,7 @@ jobs:
2122
contents: write # push received events to the findings-submissions inbox branch
2223
steps:
2324
- name: Checkout gitbot-fleet
24-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
25+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
2526
with:
2627
fetch-depth: 0
2728

0 commit comments

Comments
 (0)