Skip to content

Commit

Permalink
fix: Update runs-on labels in GitHub Actions workflows (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlokshin-czi authored Feb 7, 2025
1 parent b5806d3 commit 72fab2f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chart-dependency-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
update_chart_locks:
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
steps:
- name: Generate token
id: generate_token
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/chart-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:

jobs:
check-chart-released:
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -37,7 +37,7 @@ jobs:
if: ${{ needs.check-chart-released.outputs.chart_released == 'true' }}
needs:
- check-chart-released
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
steps:
- name: Parse Tag
id: parse_tag
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/conventional-commits@v1.4.0
2 changes: 1 addition & 1 deletion .github/workflows/generate-schemas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
update_schema_and_readme:
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
name: release-please
jobs:
release-please:
runs-on: [ARM64, self-hosted, Linux]
runs-on: ARM64
steps:
# See https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow
# For why we need to generate a token and not use the default
Expand Down

0 comments on commit 72fab2f

Please sign in to comment.