Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Phase 9 §9.1.3 — guard against re-introducing the
# `mailcatcher` dev sidecar (or any SMTP/mail config)
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:

- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: compose
name: Compose
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install LLVM tools
run: sudo apt-get update && sudo apt-get install -y llvm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: setup
name: Setup Toolchain
Expand All @@ -42,7 +42,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: setup
name: Setup Toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: setup
name: Setup Toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_coverage_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install LLVM tools
run: sudo apt-get update && sudo apt-get install -y llvm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: sync
name: Apply Labels from File
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: setup
name: Setup Toolchain
Expand All @@ -40,7 +40,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: msrv
name: Read MSRV from Cargo.toml
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: setup
name: Setup Toolchain
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: setup
name: Setup Toolchain
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- id: setup
name: Setup Toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload_coverage_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
echo "override_commit=$(<commit_sha.txt)" >> "$GITHUB_OUTPUT"

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ steps.parse_previous_artifacts.outputs.override_commit || '' }}
path: repo_root
Expand Down
Loading