Skip to content

Commit 1c848d3

Browse files
Switch runners
1 parent 492ceca commit 1c848d3

File tree

4 files changed

+22
-12
lines changed

4 files changed

+22
-12
lines changed

.github/workflows/create-development-dump.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
create-development-dump:
10-
runs-on: self-hosted
10+
runs-on: ubuntu-latest
1111

1212
env:
1313
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
@@ -25,7 +25,9 @@ jobs:
2525
key: vendor-${{ hashFiles('**/composer.lock') }}
2626

2727
- name: Setup PHP
28-
run: switch-php php8.3
28+
uses: shivammathur/setup-php@v2
29+
with:
30+
php-version: '8.3'
2931

3032
- name: Install dependencies
3133
run: |

.github/workflows/create-patch-helper-files.yml

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

1515
jobs:
1616
create-patch-helper-files:
17-
runs-on: self-hosted
17+
runs-on: ubuntu-latest
1818

1919
env:
2020
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}

.github/workflows/create-production-backup.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
create-production-backup:
10-
runs-on: self-hosted
10+
runs-on: ubuntu-latest
1111

1212
env:
1313
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
@@ -25,7 +25,9 @@ jobs:
2525
key: vendor-${{ hashFiles('**/composer.lock') }}
2626

2727
- name: Setup PHP
28-
run: switch-php php8.3
28+
uses: shivammathur/setup-php@v2
29+
with:
30+
php-version: '8.3'
2931

3032
- name: Install dependencies
3133
run: |

.github/workflows/magento2.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: push
44

55
jobs:
66
build:
7-
runs-on: self-hosted-fast
7+
runs-on: ubuntu-latest
88

99
env:
1010
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
@@ -23,7 +23,9 @@ jobs:
2323
key: vendor-${{ hashFiles('**/composer.lock') }}
2424

2525
- name: Setup PHP
26-
run: switch-php php8.3
26+
uses: shivammathur/setup-php@v2
27+
with:
28+
php-version: '8.3'
2729

2830
- name: Install Composer dependencies
2931
run: |
@@ -59,7 +61,7 @@ jobs:
5961
needs:
6062
- build
6163

62-
runs-on: self-hosted-fast
64+
runs-on: ubuntu-latest
6365

6466
env:
6567
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
@@ -76,7 +78,9 @@ jobs:
7678
tar -xzf artifacts/artifact.tar.gz
7779
7880
- name: Setup PHP
79-
run: switch-php php8.3
81+
uses: shivammathur/setup-php@v2
82+
with:
83+
php-version: '8.3'
8084

8185
- name: Install Composer dependencies
8286
run: |
@@ -93,7 +97,7 @@ jobs:
9397
needs:
9498
- build
9599

96-
runs-on: self-hosted-full
100+
runs-on: ubuntu-latest
97101

98102
steps:
99103
- name: Download artifact
@@ -192,7 +196,7 @@ jobs:
192196
- test-phpstan
193197

194198
concurrency: deploy-${{ github.head_ref || github.ref_name }}
195-
runs-on: self-hosted-fast
199+
runs-on: ubuntu-latest
196200

197201
env:
198202
DEPLOYER_HOSTS: ${{ secrets.DEPLOYER_HOSTS }}
@@ -210,7 +214,9 @@ jobs:
210214
key: vendor-${{ hashFiles('**/composer.lock') }}
211215

212216
- name: Setup PHP
213-
run: switch-php php8.3
217+
uses: shivammathur/setup-php@v2
218+
with:
219+
php-version: '8.3'
214220

215221
- name: Download artifact
216222
uses: actions/download-artifact@v5

0 commit comments

Comments
 (0)