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
20 changes: 11 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
Comment thread
Skiipy11 marked this conversation as resolved.
with:
fetch-depth: 0
- name: Enforce repository tracked-path boundary
Expand Down Expand Up @@ -421,10 +421,10 @@ jobs:
working-directory: workbench

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4

- name: Set up Node 22
uses: actions/setup-node@v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: '22'
cache: 'npm'
Expand Down Expand Up @@ -453,10 +453,10 @@ jobs:
working-directory: packages/redaction-core

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4

- name: Set up Node 22
uses: actions/setup-node@v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: '22'
cache: 'npm'
Expand Down Expand Up @@ -487,10 +487,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4

- name: Set up Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: '3.12'

Expand Down Expand Up @@ -531,10 +531,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4

- name: Set up Rust (stable)
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@2c7215f132e9ebf062739d9130488b56d53c060c # master; toolchain via input
with:
toolchain: stable

# Tauri v2 links against system webkit/gtk; the src-tauri crate needs them present to compile its tests.
- name: Install Tauri system deps
Expand Down
2 changes: 1 addition & 1 deletion deploy/test_repository_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ def test_repo_hygiene_checkout_fetches_full_history():
checkouts = [
step
for step in steps
if isinstance(step, dict) and step.get("uses") == "actions/checkout@v4"
if isinstance(step, dict) and isinstance(step.get("uses"), str) and str(step.get("uses")).split("#")[0].strip().startswith("actions/checkout@")
]

assert len(checkouts) == 1, "repo-hygiene must have exactly one checkout"
Expand Down
Loading