Skip to content

Commit 17bdc6c

Browse files
authored
Merge pull request #311 from two-inc/INF-474/feat-migrate-github-actions-runners-to-vars
INF-474/feat: Migrate GitHub Actions runners to vars.RUNNER_STANDARD
2 parents f6f75f3 + 8e2d73e commit 17bdc6c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ on:
1010
- main
1111
jobs:
1212
php-lint:
13-
runs-on: ${{ vars.RUNNER || 'ubuntu-latest' }}
13+
runs-on: ${{ vars.RUNNER_STANDARD }}
1414
steps:
1515
- uses: actions/checkout@v3
1616
- uses: StephaneBour/actions-php-lint@8.2
1717
with:
1818
dir: "."
1919
release:
20-
runs-on: ${{ vars.RUNNER || 'ubuntu-latest' }}
20+
runs-on: ${{ vars.RUNNER_STANDARD }}
2121
if: ${{ github.event_name == 'release' }}
2222
needs: php-lint
2323
permissions:

.github/workflows/style.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
pre-commit:
17-
runs-on: ${{ vars.RUNNER || 'ubuntu-latest' }}
17+
runs-on: ${{ vars.RUNNER_STANDARD }}
1818
timeout-minutes: 20
1919
steps:
2020
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)