Skip to content

Commit f8be122

Browse files
committed
Open 1.7-dev
1 parent c900ee2 commit f8be122

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

.github/workflows/backward-compatibility.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.6.x"
9+
- "1.7.x"
1010

1111
env:
12-
COMPOSER_ROOT_VERSION: "1.6.x-dev"
12+
COMPOSER_ROOT_VERSION: "1.7.x-dev"
1313

1414
concurrency:
1515
group: bc-${{ 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
@@ -8,12 +8,12 @@ on:
88
- 'compiler/**'
99
push:
1010
branches:
11-
- "1.6.x"
11+
- "1.7.x"
1212
paths-ignore:
1313
- 'compiler/**'
1414

1515
env:
16-
COMPOSER_ROOT_VERSION: "1.6.x-dev"
16+
COMPOSER_ROOT_VERSION: "1.7.x-dev"
1717

1818
concurrency:
1919
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.6.x"
9+
- "1.7.x"
1010

1111
env:
12-
COMPOSER_ROOT_VERSION: "1.6.x-dev"
12+
COMPOSER_ROOT_VERSION: "1.7.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.6.x"
9+
- "1.7.x"
1010
tags:
11-
- '1.6.*'
11+
- '1.7.*'
1212

1313
concurrency:
1414
group: phar-${{ github.ref }} # will be canceled on subsequent pushes in both branches and pull requests
@@ -93,14 +93,14 @@ jobs:
9393
- name: "Composer dump"
9494
run: "composer install --no-interaction --no-progress"
9595
env:
96-
COMPOSER_ROOT_VERSION: "1.6.x-dev"
96+
COMPOSER_ROOT_VERSION: "1.7.x-dev"
9797

9898
- name: "Compile PHAR for checksum"
9999
working-directory: "compiler/build"
100100
run: "php box.phar compile --no-parallel"
101101
env:
102102
PHAR_CHECKSUM: "1"
103-
COMPOSER_ROOT_VERSION: "1.6.x-dev"
103+
COMPOSER_ROOT_VERSION: "1.7.x-dev"
104104

105105
- name: "Re-sign PHAR"
106106
run: "php compiler/build/resign.php tmp/phpstan.phar"
@@ -123,29 +123,29 @@ jobs:
123123
integration-tests:
124124
if: github.event_name == 'pull_request'
125125
needs: compiler-tests
126-
uses: phpstan/phpstan/.github/workflows/integration-tests.yml@1.6.x
126+
uses: phpstan/phpstan/.github/workflows/integration-tests.yml@1.7.x
127127
with:
128-
ref: 1.6.x
128+
ref: 1.7.x
129129
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
130130

131131
extension-tests:
132132
if: github.event_name == 'pull_request'
133133
needs: compiler-tests
134-
uses: phpstan/phpstan/.github/workflows/extension-tests.yml@1.6.x
134+
uses: phpstan/phpstan/.github/workflows/extension-tests.yml@1.7.x
135135
with:
136-
ref: 1.6.x
136+
ref: 1.7.x
137137
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
138138

139139
other-tests:
140140
if: github.event_name == 'pull_request'
141141
needs: compiler-tests
142-
uses: phpstan/phpstan/.github/workflows/other-tests.yml@1.6.x
142+
uses: phpstan/phpstan/.github/workflows/other-tests.yml@1.7.x
143143
with:
144-
ref: 1.6.x
144+
ref: 1.7.x
145145
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
146146

147147
commit:
148-
if: "github.ref == 'refs/heads/1.6.x' || startsWith(github.ref, 'refs/tags/')"
148+
if: "github.ref == 'refs/heads/1.7.x' || startsWith(github.ref, 'refs/tags/')"
149149
needs: compiler-tests
150150
name: "Commit PHAR"
151151
runs-on: "ubuntu-latest"
@@ -166,7 +166,7 @@ jobs:
166166
repository: phpstan/phpstan
167167
path: phpstan-dist
168168
token: ${{ secrets.PAT }}
169-
ref: 1.6.x
169+
ref: 1.7.x
170170

171171
- name: "Check PHAR checksum"
172172
id: checksum-difference

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ on:
88
- 'compiler/**'
99
push:
1010
branches:
11-
- "1.6.x"
11+
- "1.7.x"
1212
paths-ignore:
1313
- 'compiler/**'
1414

1515
env:
16-
COMPOSER_ROOT_VERSION: "1.6.x-dev"
16+
COMPOSER_ROOT_VERSION: "1.7.x-dev"
1717

1818
concurrency:
1919
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
@@ -8,12 +8,12 @@ on:
88
- 'compiler/**'
99
push:
1010
branches:
11-
- "1.6.x"
11+
- "1.7.x"
1212
paths-ignore:
1313
- 'compiler/**'
1414

1515
env:
16-
COMPOSER_ROOT_VERSION: "1.6.x-dev"
16+
COMPOSER_ROOT_VERSION: "1.7.x-dev"
1717

1818
concurrency:
1919
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)