Skip to content
Closed
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -54,7 +54,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand All @@ -70,7 +70,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -100,7 +100,7 @@
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -136,10 +136,10 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Run cargo-audit
uses: actions-rs/audit-check@v1

Check failure on line 142 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/audit-check@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: e:.github/workflows/ci.yml:142:15: the runner of "actions-rs/audit-check@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -149,7 +149,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Install cargo-deny
run: cargo install cargo-deny
Expand Down Expand Up @@ -184,7 +184,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -257,7 +257,7 @@
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -303,7 +303,7 @@
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: Sync labels
uses: EndBug/label-sync@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quick-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: 🦀 Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -61,7 +61,7 @@

- name: 🎉 Success summary
if: success()
run: |

Check failure on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2129:style:1:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck] Raw Output: e:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2129:style:1:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]

Check warning on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:8:33: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2086:info:8:33: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:7:12: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2086:info:7:12: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:6:25: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2086:info:6:25: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:30: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2086:info:5:30: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:4:31: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2086:info:4:31: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:3:51: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2086:info:3:51: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:12: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2086:info:2:12: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 64 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:39: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:64:9: shellcheck reported issue in this script: SC2086:info:1:39: Double quote to prevent globbing and word splitting [shellcheck]
echo "### ✅ Quick Check Passed! 🎉" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "All validations completed successfully:" >> $GITHUB_STEP_SUMMARY
Expand All @@ -73,7 +73,7 @@

- name: ❌ Failure summary
if: failure()
run: |

Check failure on line 76 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2129:style:1:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck] Raw Output: e:.github/workflows/quick-check.yml:76:9: shellcheck reported issue in this script: SC2129:style:1:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]

Check warning on line 76 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:12: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:76:9: shellcheck reported issue in this script: SC2086:info:2:12: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 76 in .github/workflows/quick-check.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:36: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/quick-check.yml:76:9: shellcheck reported issue in this script: SC2086:info:1:36: Double quote to prevent globbing and word splitting [shellcheck]
echo "### ❌ Quick Check Failed" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "Please review the errors above and:" >> $GITHUB_STEP_SUMMARY
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: 🦀 Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -55,7 +55,7 @@
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: 🦀 Install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -77,7 +77,7 @@
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: 🦀 Install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -99,7 +99,7 @@
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7

- name: 🦀 Install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -123,7 +123,7 @@
if: always()
steps:
- name: 📊 Generate summary
run: |

Check failure on line 126 in .github/workflows/test-suite.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2129:style:1:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck] Raw Output: e:.github/workflows/test-suite.yml:126:9: shellcheck reported issue in this script: SC2129:style:1:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]
echo "### 🧪 Test Suite Results" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "| Test Type | Status |" >> $GITHUB_STEP_SUMMARY
Expand Down
Loading