Skip to content

Commit

Permalink
ci: switch default runners and timeouts (#4556)
Browse files Browse the repository at this point in the history
An experiment to see if we can fix some periodic test fails and timeouts in
longtests and the cve_scan job.

Signed-off-by: Terri Oda <[email protected]>
  • Loading branch information
terriko authored Nov 6, 2024
1 parent 8da67fa commit f5b1609
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cve_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ permissions:
jobs:
cve_scan:
name: CVE scan on dependencies
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
timeout-minutes: 30
# runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
runs-on: 'ubuntu-latest'
timeout-minutes: 60
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
github.head_ref
)
)
runs-on: 'ubuntu-latest'
runs-on: ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
timeout-minutes: 120
env:
LONG_TESTS: 1
Expand Down

0 comments on commit f5b1609

Please sign in to comment.