Skip to content

Commit

Permalink
Merge pull request #46 from coveo/fix/DT-6987-self-hosted-runners
Browse files Browse the repository at this point in the history
eks arm64 by default
  • Loading branch information
jonapich authored May 21, 2024
2 parents 7f4b74c + 1233b47 commit 10e7528
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,16 @@ on:
required: false
default: high
type: string
runs-on:
description: |
The type of machine to run the job on. Must be provided as a stringified list (e.g. `runs-on: '["ubuntu-latest","self-hosted"]'`)
default: '["coveo", "arm64" , "linux", "eks"]'
type: string

jobs:
dependency-review:
name: Dependency Review
runs-on: ubuntu-latest
runs-on: ${{ fromJson(inputs.runs-on) }}
steps:
- name: Checkout scan target
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ jobs:
public: ${{ matrix.public }}
distributed: ${{ matrix.distributed }}
comment-summary-in-pr: ${{ matrix.comment-summary-in-pr }}
runs-on: '["ubuntu-latest"]'

0 comments on commit 10e7528

Please sign in to comment.