Skip to content

Commit

Permalink
chore(gha): switch all pipelines to use self-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmorano committed May 7, 2024
1 parent f739924 commit e9f46c1
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
build:
runs-on: self-hosted
runs-on: [arc-runner-set]
steps:
- name: 🥸 Check user permission
id: check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_tests_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: [arc-runner-set]
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_tests_staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: [arc-runner-set]
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_tests_uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: [arc-runner-set]
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
permissions:
contents: read
packages: write
runs-on: self-hosted
runs-on: [arc-runner-set]
if: |
${{ github.actor != 'dependabot[bot]' }} &&
( "contains(github.event.head_commit.message, 'release-please--branches--main')" ||
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
create_release:
runs-on: self-hosted
runs-on: [arc-runner-set]
steps:
- name: 🚀 release-please-action
uses: google-github-actions/release-please-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
smoke-test:
runs-on: self-hosted
runs-on: [arc-runner-set]
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
runs-on: self-hosted
runs-on: [arc-runner-set]
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v3
Expand Down

0 comments on commit e9f46c1

Please sign in to comment.