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
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ permissions:

jobs:
actionlint:
uses: and3rn3t/.github/.github/workflows/reusable-actionlint.yml@v1
uses: and3rn3t/.github/.github/workflows/reusable-actionlint.yml@bac71674cf57c550774f71a70e32a5bb7bec48ad # v1
60 changes: 30 additions & 30 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable

- name: Cache cargo registry
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}

- name: Cache cargo index
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }}

- name: Cache cargo build
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -54,10 +54,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable
with:
components: rustfmt

Expand All @@ -70,15 +70,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable
with:
components: clippy

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand All @@ -100,15 +100,15 @@ jobs:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
uses: dtolnay/rust-toolchain@2c7215f132e9ebf062739d9130488b56d53c060c # master
with:
toolchain: ${{ matrix.rust }}

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -136,10 +136,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: Run cargo-audit
uses: actions-rs/audit-check@v1
uses: actions-rs/audit-check@35b7b53b1e25b55642157ac01b4adceb5b9ebef3 # v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -149,7 +149,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

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

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable
with:
targets: ${{ matrix.target }}

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand All @@ -208,7 +208,7 @@ jobs:
run: strip target/${{ matrix.target }}/release/${{ matrix.artifact_name }}

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: ${{ matrix.asset_name }}
path: target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
Expand All @@ -221,7 +221,7 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Download all artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6

- name: Display structure of downloaded files
run: ls -R
Expand All @@ -241,7 +241,7 @@ jobs:
done

- name: Upload release assets
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2
with:
files: |
*.zip
Expand All @@ -257,13 +257,13 @@ jobs:
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand All @@ -278,7 +278,7 @@ jobs:
run: cargo tarpaulin --out Xml --all-features --timeout 300

- name: Upload to codecov.io
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5
with:
files: ./cobertura.xml
flags: unit,integration
Expand All @@ -291,7 +291,7 @@ jobs:
run: cargo tarpaulin --out Html --all-features --timeout 300

- name: Upload coverage report as artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: coverage-report
path: tarpaulin-report.html
Expand All @@ -303,16 +303,16 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable

- name: Build documentation
run: cargo doc --no-deps --all-features

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4
if: github.event_name == 'push'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/consistency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ permissions:

jobs:
guard:
uses: and3rn3t/.github/.github/workflows/reusable-consistency-guard.yml@v1
uses: and3rn3t/.github/.github/workflows/reusable-consistency-guard.yml@bac71674cf57c550774f71a70e32a5bb7bec48ad # v1
with:
mode: warn
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ permissions:

jobs:
dependency-review:
uses: and3rn3t/.github/.github/workflows/reusable-dependency-review.yml@v1
uses: and3rn3t/.github/.github/workflows/reusable-dependency-review.yml@bac71674cf57c550774f71a70e32a5bb7bec48ad # v1
2 changes: 1 addition & 1 deletion .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ permissions:

jobs:
scan:
uses: and3rn3t/.github/.github/workflows/reusable-gitleaks.yml@v1
uses: and3rn3t/.github/.github/workflows/reusable-gitleaks.yml@bac71674cf57c550774f71a70e32a5bb7bec48ad # v1
4 changes: 2 additions & 2 deletions .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Sync labels
uses: EndBug/label-sync@v2
uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2
with:
config-file: .github/labels.yml
delete-other-labels: false
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@v6
- uses: actions/labeler@b8dd2d9be0f68b860e7dae5dae7d772984eacd6d # v6
with:
sync-labels: true
6 changes: 3 additions & 3 deletions .github/workflows/quick-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: 🦀 Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable
with:
components: rustfmt, clippy

- name: 📦 Cache cargo dependencies
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
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]

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]

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
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ permissions:

jobs:
update-release-draft:
uses: and3rn3t/.github/.github/workflows/reusable-release-drafter.yml@v1
uses: and3rn3t/.github/.github/workflows/reusable-release-drafter.yml@bac71674cf57c550774f71a70e32a5bb7bec48ad # v1
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ permissions:

jobs:
stale:
uses: and3rn3t/.github/.github/workflows/reusable-stale.yml@v1
uses: and3rn3t/.github/.github/workflows/reusable-stale.yml@bac71674cf57c550774f71a70e32a5bb7bec48ad # v1
24 changes: 12 additions & 12 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: 🦀 Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable

- name: 📦 Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand All @@ -55,13 +55,13 @@
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: 🦀 Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable

- name: 📦 Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand All @@ -77,13 +77,13 @@
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: 🦀 Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable

- name: 📦 Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand All @@ -99,13 +99,13 @@
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: 🦀 Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable

- name: 📦 Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
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]

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