File tree Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
create-development-dump :
10
- runs-on : self-hosted
10
+ runs-on : ubuntu-latest
11
11
12
12
env :
13
13
COMPOSER_AUTH : ${{ secrets.COMPOSER_AUTH }}
25
25
key : vendor-${{ hashFiles('**/composer.lock') }}
26
26
27
27
- name : Setup PHP
28
- run : switch-php php8.3
28
+ uses : shivammathur/setup-php@v2
29
+ with :
30
+ php-version : ' 8.3'
29
31
30
32
- name : Install dependencies
31
33
run : |
Original file line number Diff line number Diff line change 14
14
15
15
jobs :
16
16
create-patch-helper-files :
17
- runs-on : self-hosted
17
+ runs-on : ubuntu-latest
18
18
19
19
env :
20
20
COMPOSER_AUTH : ${{ secrets.COMPOSER_AUTH }}
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
create-production-backup :
10
- runs-on : self-hosted
10
+ runs-on : ubuntu-latest
11
11
12
12
env :
13
13
COMPOSER_AUTH : ${{ secrets.COMPOSER_AUTH }}
25
25
key : vendor-${{ hashFiles('**/composer.lock') }}
26
26
27
27
- name : Setup PHP
28
- run : switch-php php8.3
28
+ uses : shivammathur/setup-php@v2
29
+ with :
30
+ php-version : ' 8.3'
29
31
30
32
- name : Install dependencies
31
33
run : |
Original file line number Diff line number Diff line change 4
4
5
5
jobs :
6
6
build :
7
- runs-on : self-hosted-fast
7
+ runs-on : ubuntu-latest
8
8
9
9
env :
10
10
COMPOSER_AUTH : ${{ secrets.COMPOSER_AUTH }}
23
23
key : vendor-${{ hashFiles('**/composer.lock') }}
24
24
25
25
- name : Setup PHP
26
- run : switch-php php8.3
26
+ uses : shivammathur/setup-php@v2
27
+ with :
28
+ php-version : ' 8.3'
27
29
28
30
- name : Install Composer dependencies
29
31
run : |
59
61
needs :
60
62
- build
61
63
62
- runs-on : self-hosted-fast
64
+ runs-on : ubuntu-latest
63
65
64
66
env :
65
67
COMPOSER_AUTH : ${{ secrets.COMPOSER_AUTH }}
76
78
tar -xzf artifacts/artifact.tar.gz
77
79
78
80
- name : Setup PHP
79
- run : switch-php php8.3
81
+ uses : shivammathur/setup-php@v2
82
+ with :
83
+ php-version : ' 8.3'
80
84
81
85
- name : Install Composer dependencies
82
86
run : |
93
97
needs :
94
98
- build
95
99
96
- runs-on : self-hosted-full
100
+ runs-on : ubuntu-latest
97
101
98
102
steps :
99
103
- name : Download artifact
@@ -192,7 +196,7 @@ jobs:
192
196
- test-phpstan
193
197
194
198
concurrency : deploy-${{ github.head_ref || github.ref_name }}
195
- runs-on : self-hosted-fast
199
+ runs-on : ubuntu-latest
196
200
197
201
env :
198
202
DEPLOYER_HOSTS : ${{ secrets.DEPLOYER_HOSTS }}
@@ -210,7 +214,9 @@ jobs:
210
214
key : vendor-${{ hashFiles('**/composer.lock') }}
211
215
212
216
- name : Setup PHP
213
- run : switch-php php8.3
217
+ uses : shivammathur/setup-php@v2
218
+ with :
219
+ php-version : ' 8.3'
214
220
215
221
- name : Download artifact
216
222
uses : actions/download-artifact@v5
You can’t perform that action at this time.
0 commit comments