Skip to content

Commit 800429b

Browse files
committed
Open 1.11.x
1 parent e70b7fd commit 800429b

File tree

8 files changed

+26
-26
lines changed

8 files changed

+26
-26
lines changed

.github/workflows/backward-compatibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "1.10.x"
9+
- "1.11.x"
1010
paths:
1111
- 'src/**'
1212
- '.github/workflows/backward-compatibility.yml'
1313

1414
env:
15-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
15+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
1616

1717
concurrency:
1818
group: bc-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

.github/workflows/build-issue-bot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ on:
99
- '.github/workflows/build-issue-bot.yml'
1010
push:
1111
branches:
12-
- "1.10.x"
12+
- "1.11.x"
1313
paths:
1414
- 'issue-bot/**'
1515
- '.github/workflows/build-issue-bot.yml'
1616

1717
env:
18-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
18+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
1919

2020
concurrency:
2121
group: build-issue-bot-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

.github/workflows/changelog-generator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ on:
99
- '.github/workflows/changelog-generator.yml'
1010
push:
1111
branches:
12-
- "1.10.x"
12+
- "1.11.x"
1313
paths:
1414
- 'changelog-generator/**'
1515
- '.github/workflows/changelog-generator.yml'
1616

1717
env:
18-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
18+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
1919

2020
concurrency:
2121
group: changelog-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ on:
1111
- 'issue-bot/**'
1212
push:
1313
branches:
14-
- "1.10.x"
14+
- "1.11.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'
1818
- 'changelog-generator/**'
1919
- 'issue-bot/**'
2020

2121
env:
22-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
22+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
2323

2424
concurrency:
2525
group: e2e-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "1.10.x"
9+
- "1.11.x"
1010

1111
env:
12-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
12+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
1313

1414
concurrency:
1515
group: lint-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

.github/workflows/phar.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "1.10.x"
9+
- "1.11.x"
1010
tags:
11-
- '1.10.*'
11+
- '1.11.*'
1212

1313
concurrency:
1414
group: phar-${{ github.ref }} # will be canceled on subsequent pushes in both branches and pull requests
@@ -89,14 +89,14 @@ jobs:
8989
- name: "Composer dump"
9090
run: "composer install --no-interaction --no-progress"
9191
env:
92-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
92+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
9393

9494
- name: "Compile PHAR for checksum"
9595
working-directory: "compiler/build"
9696
run: "php box.phar compile --no-parallel"
9797
env:
9898
PHAR_CHECKSUM: "1"
99-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
99+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
100100

101101
- name: "Re-sign PHAR"
102102
run: "php compiler/build/resign.php tmp/phpstan.phar"
@@ -119,30 +119,30 @@ jobs:
119119
integration-tests:
120120
if: github.event_name == 'pull_request'
121121
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
123123
with:
124-
ref: 1.10.x
124+
ref: 1.11.x
125125
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
126126

127127
extension-tests:
128128
if: github.event_name == 'pull_request'
129129
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
131131
with:
132-
ref: 1.10.x
132+
ref: 1.11.x
133133
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
134134

135135
other-tests:
136136
if: github.event_name == 'pull_request'
137137
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
139139
with:
140-
ref: 1.10.x
140+
ref: 1.11.x
141141
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
142142

143143
commit:
144144
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/'))"
146146
needs: compiler-tests
147147
runs-on: "ubuntu-latest"
148148
timeout-minutes: 60
@@ -164,7 +164,7 @@ jobs:
164164
repository: phpstan/phpstan
165165
path: phpstan-dist
166166
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
167-
ref: 1.10.x
167+
ref: 1.11.x
168168

169169
- name: "Get previous pushed dist commit"
170170
id: previous-commit

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ on:
99
- 'apigen/**'
1010
push:
1111
branches:
12-
- "1.10.x"
12+
- "1.11.x"
1313
paths-ignore:
1414
- 'compiler/**'
1515
- 'apigen/**'
1616

1717
env:
18-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
18+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
1919

2020
concurrency:
2121
group: sa-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ on:
1111
- 'issue-bot/**'
1212
push:
1313
branches:
14-
- "1.10.x"
14+
- "1.11.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'
1818
- 'changelog-generator/**'
1919
- 'issue-bot/**'
2020

2121
env:
22-
COMPOSER_ROOT_VERSION: "1.10.x-dev"
22+
COMPOSER_ROOT_VERSION: "1.11.x-dev"
2323

2424
concurrency:
2525
group: tests-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

0 commit comments

Comments
 (0)