Skip to content

Commit db8b93d

Browse files
committed
ci: fix validate-rust-cache script and extend boot/scan job timeouts
1 parent 4ff6843 commit db8b93d

3 files changed

Lines changed: 2 additions & 8 deletions

File tree

.github/workflows/ci-reliability-test.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,6 @@ jobs:
168168
run: |
169169
echo "🔍 Checking for deprecated Rust cache settings..."
170170
171-
# Check for deprecated cache-all-crates (ignore this workflow's own docs)
172-
if grep -r --include='*.yml' --include='*.yaml' -n 'cache-all-crates:' .github/ \
173-
| grep -v 'ci-reliability-test.yml'; then
174-
echo "❌ Found deprecated 'cache-all-crates' setting:"
175-
grep -r --include='*.yml' --include='*.yaml' -n 'cache-all-crates:' .github/ \
176-
| grep -v 'ci-reliability-test.yml' || true
177171
# Match the YAML key only (avoid false positives from this script's comments)
178172
if grep -rIn --include='*.yml' -E '^[[:space:]]*cache-all-crates:' .github/; then
179173
echo "❌ Found deprecated 'cache-all-crates' setting:"

.github/workflows/security-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
docker-trivy:
5555
name: Trivy Container Scan
5656
runs-on: ubuntu-latest
57-
timeout-minutes: 15
57+
timeout-minutes: 30
5858
permissions:
5959
security-events: write
6060
steps:

.github/workflows/verify-operator-boot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
verify-operator-boot:
2828
name: Verify Operator Boot & Cluster Connection
2929
runs-on: ubuntu-latest
30-
timeout-minutes: 20
30+
timeout-minutes: 30
3131

3232
steps:
3333
- uses: actions/checkout@v7

0 commit comments

Comments
 (0)