Skip to content

Commit

Permalink
eks arm64 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jonapich committed May 17, 2024
1 parent 124ceb9 commit f9e1eaf
Showing 1 changed file with 6 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 @@ -26,11 +26,16 @@ on:
required: false
default: ${{ github.event.pull_request.head.sha }}
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

0 comments on commit f9e1eaf

Please sign in to comment.