Skip to content

Commit

Permalink
fix: Update runs-on to use ARM64 or X64
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlokshin-czi committed Feb 6, 2025
1 parent 81e7471 commit ba19fbb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/argus-stack-prod-upsert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:

jobs:
prod_stack_upsert:
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
permissions:
id-token: write
issues: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/argus-stack-rdev-create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:

jobs:
create-rdev-stack:
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
if: contains(github.event.pull_request.labels.*.name, 'stack')
permissions:
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/argus-stack-rdev-delete.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
delete-rdev-stack:
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
if: ${{ !contains(github.event.pull_request.labels.*.name, 'stack') || github.event.pull_request.state == 'closed' }}
permissions:
id-token: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/argus-stack-staging-upsert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: github.head_ref == 'release-please--branches--main'
outputs:
changes: ${{ steps.filter.outputs.staging_config }}
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
steps:
- run: echo "The head branch of this PR is the release please branch"
- uses: dorny/paths-filter@v3
Expand All @@ -26,7 +26,7 @@ jobs:
staging_stack_upsert:
needs: run_if
if: needs.run_if.outputs.changes == 'true'
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
permissions:
id-token: write
issues: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conventional-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ concurrency:
cancel-in-progress: true
jobs:
conventional_commit_title:
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
steps:
- uses: chanzuckerberg/github-actions/.github/actions/[email protected]

0 comments on commit ba19fbb

Please sign in to comment.