6
6
pull_request :
7
7
push :
8
8
branches :
9
- - " 1.10 .x"
9
+ - " 1.11 .x"
10
10
tags :
11
- - ' 1.10 .*'
11
+ - ' 1.11 .*'
12
12
13
13
concurrency :
14
14
group : phar-${{ github.ref }} # will be canceled on subsequent pushes in both branches and pull requests
@@ -89,14 +89,14 @@ jobs:
89
89
- name : " Composer dump"
90
90
run : " composer install --no-interaction --no-progress"
91
91
env :
92
- COMPOSER_ROOT_VERSION : " 1.10 .x-dev"
92
+ COMPOSER_ROOT_VERSION : " 1.11 .x-dev"
93
93
94
94
- name : " Compile PHAR for checksum"
95
95
working-directory : " compiler/build"
96
96
run : " php box.phar compile --no-parallel"
97
97
env :
98
98
PHAR_CHECKSUM : " 1"
99
- COMPOSER_ROOT_VERSION : " 1.10 .x-dev"
99
+ COMPOSER_ROOT_VERSION : " 1.11 .x-dev"
100
100
101
101
- name : " Re-sign PHAR"
102
102
run : " php compiler/build/resign.php tmp/phpstan.phar"
@@ -119,30 +119,30 @@ jobs:
119
119
integration-tests :
120
120
if : github.event_name == 'pull_request'
121
121
needs : compiler-tests
122
- uses : phpstan/phpstan/.github/workflows/integration-tests.yml@1.10 .x
122
+ uses : phpstan/phpstan/.github/workflows/integration-tests.yml@1.11 .x
123
123
with :
124
- ref : 1.10 .x
124
+ ref : 1.11 .x
125
125
phar-checksum : ${{needs.compiler-tests.outputs.checksum}}
126
126
127
127
extension-tests :
128
128
if : github.event_name == 'pull_request'
129
129
needs : compiler-tests
130
- uses : phpstan/phpstan/.github/workflows/extension-tests.yml@1.10 .x
130
+ uses : phpstan/phpstan/.github/workflows/extension-tests.yml@1.11 .x
131
131
with :
132
- ref : 1.10 .x
132
+ ref : 1.11 .x
133
133
phar-checksum : ${{needs.compiler-tests.outputs.checksum}}
134
134
135
135
other-tests :
136
136
if : github.event_name == 'pull_request'
137
137
needs : compiler-tests
138
- uses : phpstan/phpstan/.github/workflows/other-tests.yml@1.10 .x
138
+ uses : phpstan/phpstan/.github/workflows/other-tests.yml@1.11 .x
139
139
with :
140
- ref : 1.10 .x
140
+ ref : 1.11 .x
141
141
phar-checksum : ${{needs.compiler-tests.outputs.checksum}}
142
142
143
143
commit :
144
144
name : " Commit PHAR"
145
- if : " github.repository_owner == 'phpstan' && (github.ref == 'refs/heads/1.10 .x' || startsWith(github.ref, 'refs/tags/'))"
145
+ if : " github.repository_owner == 'phpstan' && (github.ref == 'refs/heads/1.11 .x' || startsWith(github.ref, 'refs/tags/'))"
146
146
needs : compiler-tests
147
147
runs-on : " ubuntu-latest"
148
148
timeout-minutes : 60
@@ -164,7 +164,7 @@ jobs:
164
164
repository : phpstan/phpstan
165
165
path : phpstan-dist
166
166
token : ${{ secrets.PHPSTAN_BOT_TOKEN }}
167
- ref : 1.10 .x
167
+ ref : 1.11 .x
168
168
169
169
- name : " Get previous pushed dist commit"
170
170
id : previous-commit
0 commit comments