Skip to content

Commit b701c07

Browse files
committed
Update COMPOSER_ROOT_VERSION in workflows
1 parent 7fdf5b5 commit b701c07

12 files changed

+14
-14
lines changed

Diff for: .github/workflows/apiref.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- '.github/workflows/apiref.yml'
1515

1616
env:
17-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
17+
COMPOSER_ROOT_VERSION: "2.0.x-dev"
1818

1919
concurrency:
2020
group: apigen-${{ github.ref }} # will be canceled on subsequent pushes in branch

Diff for: .github/workflows/backward-compatibility.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- '.github/workflows/backward-compatibility.yml'
1313

1414
env:
15-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
15+
COMPOSER_ROOT_VERSION: "2.0.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

Diff for: .github/workflows/build-issue-bot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- '.github/workflows/build-issue-bot.yml'
1616

1717
env:
18-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
18+
COMPOSER_ROOT_VERSION: "2.0.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

Diff for: .github/workflows/changelog-generator.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- '.github/workflows/changelog-generator.yml'
1616

1717
env:
18-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
18+
COMPOSER_ROOT_VERSION: "2.0.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

Diff for: .github/workflows/checksum-phar.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- '.github/workflows/checksum-phar.yml'
1919

2020
env:
21-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
21+
COMPOSER_ROOT_VERSION: "2.0.x-dev"
2222

2323
concurrency:
2424
group: checksum-phar-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
@@ -101,14 +101,14 @@ jobs:
101101
- name: "Composer dump"
102102
run: "composer install --no-interaction --no-progress"
103103
env:
104-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
104+
COMPOSER_ROOT_VERSION: "2.0.x-dev"
105105

106106
- name: "Compile PHAR for checksum"
107107
working-directory: "compiler/build"
108108
run: "php box.phar compile --no-parallel"
109109
env:
110110
PHAR_CHECKSUM: "1"
111-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
111+
COMPOSER_ROOT_VERSION: "2.0.x-dev"
112112

113113
- name: "Re-sign PHAR"
114114
run: "php compiler/build/resign.php tmp/phpstan.phar"

Diff for: .github/workflows/e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
- 'issue-bot/**'
2020

2121
env:
22-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
22+
COMPOSER_ROOT_VERSION: "2.0.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

Diff for: .github/workflows/issue-bot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- 'changelog-generator/**'
1919

2020
env:
21-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
21+
COMPOSER_ROOT_VERSION: "2.0.x-dev"
2222

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

Diff for: .github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "2.0.x"
1010

1111
env:
12-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
12+
COMPOSER_ROOT_VERSION: "2.0.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

Diff for: .github/workflows/phar.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- '2.0.*'
1212

1313
env:
14-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
14+
COMPOSER_ROOT_VERSION: "2.0.x-dev"
1515

1616
concurrency:
1717
group: phar-${{ github.ref }} # will be canceled on subsequent pushes in both branches and pull requests

Diff for: .github/workflows/reflection-golden-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
- 'issue-bot/**'
2020

2121
env:
22-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
22+
COMPOSER_ROOT_VERSION: "2.0.x-dev"
2323
REFLECTION_GOLDEN_TEST_FILE: "/tmp/reflection-golden.test"
2424
REFLECTION_GOLDEN_SYMBOLS_FILE: "/tmp/reflection-golden-symbols.txt"
2525

Diff for: .github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- 'apigen/**'
1616

1717
env:
18-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
18+
COMPOSER_ROOT_VERSION: "2.0.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

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
- 'issue-bot/**'
2020

2121
env:
22-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
22+
COMPOSER_ROOT_VERSION: "2.0.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)