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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
# Step 1: Check out the source code from the repository
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain from rust-toolchain.toml
# This ensures consistent Rust 1.86.0 that supports Cargo.lock v4
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain with Cargo.lock v4 support
- name: Install Rust toolchain
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain with Cargo.lock v4 support
- name: Install Rust toolchain
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain with Cargo.lock v4 support
- name: Install Rust toolchain
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Run GitHub's dependency review action
# This checks for security issues in dependency changes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain with Cargo.lock v4 support
- name: Install Rust toolchain
Expand Down Expand Up @@ -814,7 +814,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain with Cargo.lock v4 support
- name: Install Rust toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain
- name: Install Rust toolchain
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Extract version from the git tag
# This removes the 'v' prefix from tags like 'v1.0.0' to get '1.0.0'
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain with Cargo.lock v4 support
- name: Install Rust toolchain
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain
- name: Install Rust toolchain
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Download all release assets
- name: Download release assets
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain with Cargo.lock v4 support
- name: Install Rust toolchain
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain
- name: Install Rust toolchain
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain
- name: Install Rust toolchain
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Install Rust toolchain with required components
- name: Install Rust toolchain
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Run GitHub's dependency review action
# This analyzes changes to dependencies in pull requests
Expand All @@ -317,7 +317,7 @@ jobs:
steps:
# Step 1: Check out the source code
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# Step 2: Download all artifacts
- name: Download artifacts
Expand Down
Loading